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:
authorThomas Dinges <blender@dingto.org>2014-03-23 15:31:08 +0400
committerThomas Dinges <blender@dingto.org>2014-03-23 15:31:08 +0400
commitd18e4cf6eed3347be9f796511d52380d9417ea7f (patch)
treecd757c9b6a7e3cfb781c250b6015e291325ed252 /release
parent8e0ee51b85596e2403f888183ef18fb429aaa031 (diff)
Fix typo in API documentation.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/bpy_types.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index b35d3226af9..d2683471915 100644
--- a/release/scripts/modules/bpy_types.py
+++ b/release/scripts/modules/bpy_types.py
@@ -180,14 +180,14 @@ class _GenericBone:
@property
def y_axis(self):
- """ Vector pointing down the x-axis of the bone.
+ """ Vector pointing down the y-axis of the bone.
"""
from mathutils import Vector
return self.matrix.to_3x3() * Vector((0.0, 1.0, 0.0))
@property
def z_axis(self):
- """ Vector pointing down the x-axis of the bone.
+ """ Vector pointing down the z-axis of the bone.
"""
from mathutils import Vector
return self.matrix.to_3x3() * Vector((0.0, 0.0, 1.0))