From d7d3233715503ecc15b8dd1973f7e73257e2cbda Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 19 Oct 2018 17:59:58 +0200 Subject: Spelling fixes in comments and descriptions, patch by luzpaz. Differential Revision: https://developer.blender.org/D3746 --- rigify/rigs/experimental/super_chain.py | 2 +- rigify/rigs/limbs/arm.py | 2 +- rigify/rigs/limbs/leg.py | 2 +- rigify/rigs/limbs/paw.py | 2 +- rigify/rigs/spines/super_spine.py | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'rigify/rigs') diff --git a/rigify/rigs/experimental/super_chain.py b/rigify/rigs/experimental/super_chain.py index 836bc285..408bce3f 100644 --- a/rigify/rigs/experimental/super_chain.py +++ b/rigify/rigs/experimental/super_chain.py @@ -711,7 +711,7 @@ class Rig: const = owner_pb.constraints.new(constraint['constraint']) const.target = self.obj - # filter contraint props to those that actually exist in the current + # filter constraint props to those that actually exist in the current # type of constraint, then assign values to each for p in [k for k in constraint.keys() if k in dir(const)]: setattr(const, p, constraint[p]) diff --git a/rigify/rigs/limbs/arm.py b/rigify/rigs/limbs/arm.py index fd1aa41f..f9174e92 100644 --- a/rigify/rigs/limbs/arm.py +++ b/rigify/rigs/limbs/arm.py @@ -218,7 +218,7 @@ class Rig: eb[ mch ].length /= 4 eb[ ctrl ].length /= 2 - # Contraints + # Constraints for i,b in enumerate( tweaks['mch'] ): first = 0 diff --git a/rigify/rigs/limbs/leg.py b/rigify/rigs/limbs/leg.py index ae705796..4f53fb89 100644 --- a/rigify/rigs/limbs/leg.py +++ b/rigify/rigs/limbs/leg.py @@ -245,7 +245,7 @@ class Rig: eb[ mch ].length /= 4 eb[ ctrl ].length /= 2 - # Contraints + # Constraints for i,b in enumerate( tweaks['mch'] ): first = 0 diff --git a/rigify/rigs/limbs/paw.py b/rigify/rigs/limbs/paw.py index 1f1d0a82..cb1438bf 100644 --- a/rigify/rigs/limbs/paw.py +++ b/rigify/rigs/limbs/paw.py @@ -232,7 +232,7 @@ class Rig: eb[ mch ].length /= 4 eb[ ctrl ].length /= 2 - # Contraints + # Constraints for i,b in enumerate( tweaks['mch'] ): first = 0 diff --git a/rigify/rigs/spines/super_spine.py b/rigify/rigs/spines/super_spine.py index ff891b49..115d0450 100644 --- a/rigify/rigs/spines/super_spine.py +++ b/rigify/rigs/spines/super_spine.py @@ -571,7 +571,7 @@ class Rig: const = owner_pb.constraints.new(constraint['constraint']) const.target = self.obj - # filter contraint props to those that actually exist in the currnet + # filter constraint props to those that actually exist in the currnet # type of constraint, then assign values to each for p in [k for k in constraint.keys() if k in dir(const)]: setattr(const, p, constraint[p]) @@ -806,7 +806,7 @@ class Rig: bpy.ops.object.mode_set(mode='OBJECT') pb = self.obj.pose.bones - # deform bones bbone segements + # deform bones bbone segments for bone in bones['def'][:-1]: self.obj.data.bones[bone].bbone_segments = 8 -- cgit v1.2.3