aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@shlomifish.org>2017-04-19 03:20:05 +0300
committerJustin M. Keyes <justinkz@gmail.com>2017-04-19 02:20:05 +0200
commit14b1becb5466003a65fa6be0517352abb7bc0f42 (patch)
treedc90e9ea170e56eba3aa943c509efa7119259e9b /src
parentce7cba6d7f36e79d52825215ba7b6848397b0440 (diff)
downloadrneovim-14b1becb5466003a65fa6be0517352abb7bc0f42.tar.gz
rneovim-14b1becb5466003a65fa6be0517352abb7bc0f42.tar.bz2
rneovim-14b1becb5466003a65fa6be0517352abb7bc0f42.zip
doc: fix typo (#6504)
Diffstat (limited to 'src')
-rw-r--r--src/nvim/buffer.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index e48b7846ae..1f44e1adb0 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1839,9 +1839,7 @@ int buflist_getfile(int n, linenr_T lnum, int options, int forceit)
return FAIL;
}
-/*
- * go to the last know line number for the current buffer
- */
+// Go to the last known line number for the current buffer.
void buflist_getfpos(void)
{
pos_T *fpos;
@@ -2339,9 +2337,7 @@ linenr_T buflist_findlnum(buf_T *buf)
return buflist_findfpos(buf)->lnum;
}
-/*
- * List all know file names (for :files and :buffers command).
- */
+// List all known file names (for :files and :buffers command).
void buflist_list(exarg_T *eap)
{
buf_T *buf;