aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/path.c
diff options
context:
space:
mode:
authorWill Stamper <epmatsw@gmail.com>2014-06-08 13:30:44 -0500
committerJustin M. Keyes <justinkz@gmail.com>2014-06-12 20:26:35 -0400
commit5b3b3fd3ed4372866730ae857e8c09d6e5d1167d (patch)
treee339a78f58924c5001633c394078d1c21669f09a /src/nvim/path.c
parent168575f3f73f79185db0abdb91be364c0d0f29f9 (diff)
downloadrneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.gz
rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.tar.bz2
rneovim-5b3b3fd3ed4372866730ae857e8c09d6e5d1167d.zip
spelling fixes #827
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r--src/nvim/path.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c
index 4ada2e7f5b..cbddde3434 100644
--- a/src/nvim/path.c
+++ b/src/nvim/path.c
@@ -1905,12 +1905,12 @@ int path_full_dir_name(char *directory, char *buffer, int len)
}
if (os_chdir(directory) != SUCCESS) {
- // Do not return immediatly since we may be in the wrong directory.
+ // Do not return immediately since we may be in the wrong directory.
retval = FAIL;
}
if (retval == FAIL || os_dirname((char_u *) buffer, len) == FAIL) {
- // Do not return immediatly since we are in the wrong directory.
+ // Do not return immediately since we are in the wrong directory.
retval = FAIL;
}