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/window.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/window.c')
-rw-r--r-- | src/nvim/api/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index 597c857ad5..f41dafff17 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -182,7 +182,7 @@ void window_set_width(Window window, Integer width, Error *err) try_end(err); } -/// Gets a window variable +/// Gets a window-scoped (w:) variable /// /// @param window The window handle /// @param name The variable name @@ -199,7 +199,7 @@ Object window_get_var(Window window, String name, Error *err) return dict_get_value(win->w_vars, name, err); } -/// Sets a window variable. Passing 'nil' as value deletes the variable. +/// Sets a window-scoped (w:) variable. 'nil' value deletes the variable. /// /// @param window The window handle /// @param name The variable name |