spelling fixes #827

This commit is contained in:
Will Stamper
2014-06-08 13:30:44 -05:00
committed by Justin M. Keyes
parent 168575f3f7
commit 5b3b3fd3ed
30 changed files with 51 additions and 51 deletions

View File

@@ -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;
}