Fix T63673: Wrong api documentation for Quaternion.dot(other)

This commit is contained in:
2019-04-17 13:48:41 +02:00
parent 6770f76bd4
commit f3b7b7eb0c

View File

@@ -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];