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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-14 13:59:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-14 13:59:42 +0300
commitb0f87935a8d0de0f9ed886c7f26f1b7af41ed12a (patch)
tree5b3a22868f1b2eaedca523267cee05fa3fd71766 /source/blender/editors/object
parent4371c3b0444bdaa8f47e43692095a70c388b57f2 (diff)
spelling errors, no real changes to code.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c
index becad003d5c..b3a160dfff4 100644
--- a/source/blender/editors/object/object_select.c
+++ b/source/blender/editors/object/object_select.c
@@ -786,7 +786,7 @@ void object_flip_name (char *name)
/* We first check the case with a .### extension, let's find the last period */
if(isdigit(name[len-1])) {
- index= strrchr(name, '.'); // last occurrance
+ index= strrchr(name, '.'); // last occurrence
if (index && isdigit(index[1]) ) { // doesnt handle case bone.1abc2 correct..., whatever!
strcpy(number, index);
*index= 0;