diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-09-26 19:31:26 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-09-28 03:01:57 +0200 |
commit | 9c2f4ce20d4ab36b17887ae927bab73432565515 (patch) | |
tree | f9070585cb19007c9583a160b088473306d1fbf4 /src/nvim/os | |
parent | 22dfe6925d4784cf60d8d9a054abc5066e4b867f (diff) | |
download | rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.tar.gz rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.tar.bz2 rneovim-9c2f4ce20d4ab36b17887ae927bab73432565515.zip |
doc: minor comment tweaks
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 661b12accc..617a505367 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -162,7 +162,7 @@ int os_call_shell(char_u *cmd, ShellOpts opts, char_u *extra_args) /// @param input The input to the shell (NULL for no input), passed to the /// stdin of the resulting process. /// @param len The length of the input buffer (not used if `input` == NULL) -/// @param[out] output A pointer to to a location where the output will be +/// @param[out] output Pointer to a location where the output will be /// allocated and stored. Will point to NULL if the shell /// command did not output anything. If NULL is passed, /// the shell output will be ignored. @@ -227,7 +227,7 @@ static int do_os_system(char **argv, // We want to deal with stream events as fast a possible while queueing // process events, so reset everything to NULL. It prevents closing the - // streams while there's still data in the OS buffer(due to the process + // streams while there's still data in the OS buffer (due to the process // exiting before all data is read). if (input != NULL) { proc->in->events = NULL; |