From 75a1006a20c5be7add44ed709ad34ae9fb3fce7b Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Sun, 11 Jan 2015 20:05:26 -0500 Subject: api/*.c: Comment cleanup - @justinmk: Clarify comments - Match verbiage used in other api/*.c files - Fix a few typos/missing words --- src/nvim/api/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/api/window.c') 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 -- cgit