diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-02-17 01:28:37 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-03-24 19:29:29 -0400 |
commit | adfc8cf50a138a25bbe22f3c6e50ce7bd8c143e7 (patch) | |
tree | 9c8c297e14087032ac240b02065cd049cb4ac6e5 /src/nvim/main.c | |
parent | ab68ac4c0221a3cfef13d86d0ebf9fc7bad710f7 (diff) | |
download | rneovim-adfc8cf50a138a25bbe22f3c6e50ce7bd8c143e7.tar.gz rneovim-adfc8cf50a138a25bbe22f3c6e50ce7bd8c143e7.tar.bz2 rneovim-adfc8cf50a138a25bbe22f3c6e50ce7bd8c143e7.zip |
doc: Misc. cleanup
Add missing parentheses and whatnot, move dangling comment, etc. Some
specific items worth mentioning:
Fixed some references to non-existent tags, found via `make html`
msgpack_rpc/channel.c:
ELOG already prefixes each line with "error @ ..."
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index d2d252a425..9f4bc22ae0 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1961,7 +1961,7 @@ static void mainerr(int n, const char *str) } -/// Prints help message and exits; used for 'nvim -h' & 'nvim --help' +/// Prints help message for "nvim -h" or "nvim --help" and exits. static void usage(void) { signal_stop(); // kill us with CTRL-C here, if you like |