aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/ui.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-01-26 21:41:01 +0100
committerGitHub <noreply@github.com>2019-01-26 21:41:01 +0100
commitd63b534f313326c79c7b9feaf51ca0d798dd65db (patch)
tree74589afd6caa2264fab7f543de1d2a510da9b558 /src/nvim/api/ui.c
parent2132bbf9199bf019602584935965c495b1dc180b (diff)
parentcd64f5abd46e24509b8650f7ecfa30d3f0152b0e (diff)
downloadrneovim-d63b534f313326c79c7b9feaf51ca0d798dd65db.tar.gz
rneovim-d63b534f313326c79c7b9feaf51ca0d798dd65db.tar.bz2
rneovim-d63b534f313326c79c7b9feaf51ca0d798dd65db.zip
Merge #9478 from justinmk/doc
Diffstat (limited to 'src/nvim/api/ui.c')
-rw-r--r--src/nvim/api/ui.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c
index 7ba5251c60..bc8a1a941f 100644
--- a/src/nvim/api/ui.c
+++ b/src/nvim/api/ui.c
@@ -245,9 +245,8 @@ static void ui_set_option(UI *ui, bool init, String name, Object value,
name.data);
}
-/// Tell nvim to resize a grid. Nvim sends grid_resize event with the
-/// requested grid size is within size limits and with maximum allowed size
-/// otherwise.
+/// Tell Nvim to resize a grid. Triggers a grid_resize event with the requested
+/// grid size or the maximum size if it exceeds size limits.
///
/// On invalid grid handle, fails with error.
///