From f3b7b7eb0c3b434301f02718e5304144892c3e0a Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 17 Apr 2019 13:48:41 +0200 Subject: Fix T63673: Wrong api documentation for Quaternion.dot(other) --- source/blender/python/mathutils/mathutils_Quaternion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/mathutils') diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c index 86da4511a2e..8841519de8a 100644 --- a/source/blender/python/mathutils/mathutils_Quaternion.c +++ b/source/blender/python/mathutils/mathutils_Quaternion.c @@ -236,7 +236,7 @@ PyDoc_STRVAR(Quaternion_dot_doc, " :arg other: The other quaternion to perform the dot product with.\n" " :type other: :class:`Quaternion`\n" " :return: The dot product.\n" - " :rtype: :class:`Quaternion`\n"); + " :rtype: float\n"); static PyObject *Quaternion_dot(QuaternionObject *self, PyObject *value) { float tquat[QUAT_SIZE]; -- cgit v1.2.3