From 459a6ff05882e5249f02172b61f2bddc4b598e39 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 22 Oct 2016 20:40:06 +0200 Subject: test: system(): Avoid indeterminism. --- 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 0cd0833598..ef881fa0eb 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -49,8 +49,8 @@ ArrayOf(Integer, 2) nvim_win_get_cursor(Window window, Error *err) /// Sets the cursor position in the window /// -/// @param window Window handle -/// @param pos (row, col) tuple representing the new position +/// @param window Window handle +/// @param pos (row, col) tuple representing the new position /// @param[out] err Error details, if any void nvim_win_set_cursor(Window window, ArrayOf(Integer, 2) pos, Error *err) { -- cgit