diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-01-11 20:05:26 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-26 20:02:53 -0500 |
commit | 75a1006a20c5be7add44ed709ad34ae9fb3fce7b (patch) | |
tree | 5896dda106406f9b52aa1d917706c8d1a14a62b3 /src/nvim/api/buffer.c | |
parent | 6425627c3fe1d4c0a88b7309f248f57490b874fd (diff) | |
download | rneovim-75a1006a20c5be7add44ed709ad34ae9fb3fce7b.tar.gz rneovim-75a1006a20c5be7add44ed709ad34ae9fb3fce7b.tar.bz2 rneovim-75a1006a20c5be7add44ed709ad34ae9fb3fce7b.zip |
api/*.c: Comment cleanup
- @justinmk: Clarify comments
- Match verbiage used in other api/*.c files
- Fix a few typos/missing words
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 0292e82038..b4a52f97fb 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -308,7 +308,7 @@ end: try_end(err); } -/// Gets a buffer variable +/// Gets a buffer-scoped (b:) variable. /// /// @param buffer The buffer handle /// @param name The variable name @@ -325,7 +325,7 @@ Object buffer_get_var(Buffer buffer, String name, Error *err) return dict_get_value(buf->b_vars, name, err); } -/// Sets a buffer variable. Passing 'nil' as value deletes the variable. +/// Sets a buffer-scoped (b:) variable. 'nil' value deletes the variable. /// /// @param buffer The buffer handle /// @param name The variable name |