From 5b3b3fd3ed4372866730ae857e8c09d6e5d1167d Mon Sep 17 00:00:00 2001 From: Will Stamper Date: Sun, 8 Jun 2014 13:30:44 -0500 Subject: spelling fixes #827 --- src/nvim/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/path.c') 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; } -- cgit