From cd6b49f995fdca5240a9b97fa99b4dd669a047ea Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 7 Jul 2019 15:38:41 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/intern/path_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/path_util.c') diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index 61b773f6016..111b530a527 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -1037,7 +1037,7 @@ bool BLI_path_abs(char *path, const char *basepath) * in this case, there is no use in trying C:/ since it * will never exist on a unix os. * - * Add a / prefix and lowercase the driveletter, remove the : + * Add a '/' prefix and lowercase the drive-letter, remove the ':'. * C:\foo.JPG -> /c/foo.JPG */ if (isalpha(tmp[0]) && tmp[1] == ':' && (tmp[2] == '\\' || tmp[2] == '/')) { @@ -1552,7 +1552,7 @@ bool BLI_path_extension_glob_validate(char *ext_fnmatch) only_wildcards = true; } /* Only one group in the pattern, so even if its only made of wildcard(s), - * it is assumed vaid. */ + * it is assumed valid. */ return false; } -- cgit v1.2.3