[Bf-blender-cvs] [d18e4cf] master: Fix typo in API documentation.

Thomas Dinges noreply at git.blender.org
Sun Mar 23 12:31:41 CET 2014


Commit: d18e4cf6eed3347be9f796511d52380d9417ea7f
Author: Thomas Dinges
Date:   Sun Mar 23 12:31:08 2014 +0100
https://developer.blender.org/rBd18e4cf6eed3347be9f796511d52380d9417ea7f

Fix typo in API documentation.

===================================================================

M	release/scripts/modules/bpy_types.py

===================================================================

diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index b35d322..d268347 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))




More information about the Bf-blender-cvs mailing list