[Bf-blender-cvs] [604f5cf3f41] blender2.8: Cleanup: Typo in comment

Sergey Sharybin noreply at git.blender.org
Tue Dec 18 12:55:30 CET 2018


Commit: 604f5cf3f41e88adcbededb93d7e1ae83a40635a
Author: Sergey Sharybin
Date:   Tue Dec 18 12:55:13 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB604f5cf3f41e88adcbededb93d7e1ae83a40635a

Cleanup: Typo in comment

===================================================================

M	source/blender/blenlib/intern/string.c

===================================================================

diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index f29636eb55c..f092d278338 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -385,7 +385,7 @@ char *BLI_str_quoted_substrN(const char *__restrict str, const char *__restrict
 	if (startMatch) {
 		const size_t prefixLen = strlen(prefix);
 		startMatch += prefixLen + 1;
-		/* get the end point (i.e. where the next occurance of " is after the starting point) */
+		/* get the end point (i.e. where the next occurrence of " is after the starting point) */
 
 		endMatch = startMatch;
 		while ((endMatch = strchr(endMatch, '"'))) {



More information about the Bf-blender-cvs mailing list