aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-01 14:35:58 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-05-01 14:55:26 +0200
commitfa1ee0ac73ab0fbbd246783f42e2df2c2d9280d6 (patch)
tree0d394eace71c9339cc5de16c419fcc39bb0adcad /src/nvim/fileio.c
parentdeccd843edc9ecda04fae09bb550a90b1ba20632 (diff)
downloadrneovim-fa1ee0ac73ab0fbbd246783f42e2df2c2d9280d6.tar.gz
rneovim-fa1ee0ac73ab0fbbd246783f42e2df2c2d9280d6.tar.bz2
rneovim-fa1ee0ac73ab0fbbd246783f42e2df2c2d9280d6.zip
doc: bracketed-paste-mode
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index 3e062aecc0..4063277403 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -4659,7 +4659,7 @@ int vim_rename(const char_u *from, const char_u *to)
return -1;
}
- // Avoid xmalloc() here as vim_rename() is called by buf_write() when neovim
+ // Avoid xmalloc() here as vim_rename() is called by buf_write() when nvim
// is `preserve_exit()`ing.
buffer = try_malloc(BUFSIZE);
if (buffer == NULL) {