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>2013-12-09 17:02:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-09 17:02:37 +0400
commit2ef3f6159ca2ead6b8c0fbc3d83d8eb42f2f5974 (patch)
treebd6789f3e32b9a248caba62c7c5a49131c773e17
parent1831c930a5a2144e7941407e2a283cd168897626 (diff)
Fix T37715: Incorrect docstring
-rw-r--r--source/blender/python/mathutils/mathutils_geometry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/mathutils/mathutils_geometry.c b/source/blender/python/mathutils/mathutils_geometry.c
index 584861d4c49..9cbff45ffa1 100644
--- a/source/blender/python/mathutils/mathutils_geometry.c
+++ b/source/blender/python/mathutils/mathutils_geometry.c
@@ -970,9 +970,9 @@ PyDoc_STRVAR(M_Geometry_distance_point_to_plane_doc,
"\n"
" :arg pt: Point\n"
" :type pt: :class:`mathutils.Vector`\n"
-" :arg plane_co: First point of the quad\n"
+" :arg plane_co: A point on the plane\n"
" :type plane_co: :class:`mathutils.Vector`\n"
-" :arg plane_no: Second point of the quad\n"
+" :arg plane_no: The direction the plane is facing\n"
" :type plane_no: :class:`mathutils.Vector`\n"
" :rtype: float\n"
);