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/armature
parent4371c3b0444bdaa8f47e43692095a70c388b57f2 (diff)
spelling errors, no real changes to code.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/editarmature.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c
index f382896c868..1b6b489488c 100644
--- a/source/blender/editors/armature/editarmature.c
+++ b/source/blender/editors/armature/editarmature.c
@@ -517,7 +517,7 @@ void unique_editbone_name (ListBase *edbo, char *name, EditBone *bone)
/* Strip off the suffix, if it's a number */
number= strlen(name);
if (number && isdigit(name[number-1])) {
- dot= strrchr(name, '.'); // last occurrance
+ dot= strrchr(name, '.'); // last occurrence
if (dot)
*dot=0;
}
@@ -5318,7 +5318,7 @@ void unique_bone_name (bArmature *arm, char *name)
/* Strip off the suffix, if it's a number */
number= strlen(name);
if(number && isdigit(name[number-1])) {
- dot= strrchr(name, '.'); // last occurrance
+ dot= strrchr(name, '.'); // last occurrence
if (dot)
*dot=0;
}