Cleanup: Typo in comment

This commit is contained in:
Sergey Sharybin 2018-12-18 12:55:13 +01:00
parent 486be2219a
commit 604f5cf3f4
1 changed files with 1 additions and 1 deletions

View File

@ -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, '"'))) {