diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-05-03 17:45:34 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-03 17:47:35 -0400 |
commit | 32d3027fcfacdff0aaedb98f910328b5d501608e (patch) | |
tree | e3e814c21d9a80067e3fd7b4ab75c34c4d197941 | |
parent | a9aacb74f09e2453961a63d5e6196e5fb18d8f6e (diff) | |
download | rneovim-32d3027fcfacdff0aaedb98f910328b5d501608e.tar.gz rneovim-32d3027fcfacdff0aaedb98f910328b5d501608e.tar.bz2 rneovim-32d3027fcfacdff0aaedb98f910328b5d501608e.zip |
doc/eval: Fixed broken links
Found with `make -C runtime/doc html`.
[ci skip]
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 95d06b92e3..3865175a1f 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4031,7 +4031,7 @@ jobsend({job}, {data}) {Nvim} *jobsend()* jobstart({cmd}[, {opts}]) {Nvim} *jobstart()* Spawns {cmd} as a job. If {cmd} is a |List|, it will be run - directly. If {cmd} is a |String|, it will be equivalent to > + directly. If {cmd} is a |string|, it will be equivalent to > :call jobstart([&shell, &shellcmdflag, '{cmd}']) < If passed, {opts} must be a dictionary with any of the following keys: @@ -6154,7 +6154,7 @@ synstack({lnum}, {col}) *synstack()* valid positions. system({cmd} [, {input}]) *system()* *E677* - Get the output of the shell command {cmd} as a |String|. {cmd} + Get the output of the shell command {cmd} as a |string|. {cmd} will be run the same as in |jobstart()|. See |systemlist()| to get the output as a |List|. |