diff options
author | KunMing Xie <qqzz014@gmail.com> | 2017-10-09 00:52:57 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-08 18:52:57 +0200 |
commit | 1663599bebd7bd360f116b003b9f572b01d7a8d8 (patch) | |
tree | 8fc211ed3aac1b33bcd55a7e11c3309baf097b1b /src/nvim/eval.c | |
parent | e565fc229412dde1378db7d4dc80ed7ac9dfbcaf (diff) | |
download | rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.tar.gz rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.tar.bz2 rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.zip |
vim-patch:8.0.0164 (#7368)
Problem: Outdated and misplaced comments.
Solution: Fix the comments.
https://github.com/vim/vim/commit/caa55b65c204946d160c1b743c5f8f3b506dc4d3
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 86b99c2783..b2a0d9a767 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -17528,7 +17528,7 @@ static void f_winsaveview(typval_T *argvars, typval_T *rettv, FunPtr fptr) tv_dict_add_nr(dict, S_LEN("skipcol"), (varnumber_T)curwin->w_skipcol); } -/// Writes list of strings to file +/// Write "list" of strings to file "fd". /// /// @param fp File to write to. /// @param[in] list List to write. |