Fix T76399: Wrong API docs for mathutils.Vector.dot

This commit is contained in:
Jacques Lucke 2020-05-04 14:33:48 +02:00
parent d1226a6d9d
commit 19ea4ba9c5
Notes: blender-bot 2023-02-13 22:38:46 +01:00
Referenced by issue #76399, mathutils.Vector.dot and mathutils.Vector.cross: wrong return type in PyDoc_STRVAR
1 changed files with 1 additions and 1 deletions

View File

@ -930,7 +930,7 @@ PyDoc_STRVAR(Vector_dot_doc,
" :arg other: The other vector to perform the dot product with.\n"
" :type other: :class:`Vector`\n"
" :return: The dot product.\n"
" :rtype: :class:`Vector`\n");
" :rtype: float\n");
static PyObject *Vector_dot(VectorObject *self, PyObject *value)
{
float *tvec;