Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-18 14:55:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-18 14:55:13 +0300
commit604f5cf3f41e88adcbededb93d7e1ae83a40635a (patch)
tree46d95283eff71592bc7272abea7f120990dae7d3 /source/blender/blenlib
parent486be2219ab6a0d40ae8108cf7a2de86fbda21e3 (diff)
Cleanup: Typo in comment
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/string.c2
1 files changed, 1 insertions, 1 deletions
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, '"'))) {