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

This commit is contained in:
Jacques Lucke 2019-04-17 13:48:41 +02:00
parent 6770f76bd4
commit f3b7b7eb0c
1 changed files with 1 additions and 1 deletions

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