From 24d77e7db727c938e374655eec702a8162decf67 Mon Sep 17 00:00:00 2001 From: Tobias Heinke Date: Sun, 14 Jun 2020 19:14:26 -0400 Subject: API docs: mathutils leaked markup Reviewed By: Blendify Differential Revision: https://developer.blender.org/D8021 --- source/blender/python/mathutils/mathutils_Matrix.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/python/mathutils') diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c index 7a3a92d8a10..7896b939d77 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.c +++ b/source/blender/python/mathutils/mathutils_Matrix.c @@ -1527,7 +1527,7 @@ PyDoc_STRVAR( " (instead of raising a :exc:`ValueError` exception).\n" " :type fallback: :class:`Matrix`\n" "\n" - " .. seealso:: `Inverse matrix ` on " + " .. seealso:: `Inverse matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_invert(MatrixObject *self, PyObject *args) { @@ -1642,7 +1642,7 @@ PyDoc_STRVAR(Matrix_invert_safe_doc, "to get an invertible one.\n" " If tweaked matrix is still degenerated, set to the identity matrix instead.\n" "\n" - " .. seealso:: `Inverse Matrix ` on " + " .. seealso:: `Inverse Matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_invert_safe(MatrixObject *self) { @@ -1696,7 +1696,7 @@ PyDoc_STRVAR( "\n" " .. note:: When the matrix cannot be adjugated a :exc:`ValueError` exception is raised.\n" "\n" - " .. seealso:: `Adjugate matrix ` on " + " .. seealso:: `Adjugate matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_adjugate(MatrixObject *self) { @@ -1883,7 +1883,7 @@ PyDoc_STRVAR( " :return: Return the determinant of a matrix.\n" " :rtype: float\n" "\n" - " .. seealso:: `Determinant ` on Wikipedia.\n"); + " .. seealso:: `Determinant `__ on Wikipedia.\n"); static PyObject *Matrix_determinant(MatrixObject *self) { if (BaseMath_ReadCallback(self) == -1) { @@ -1906,7 +1906,7 @@ PyDoc_STRVAR( "\n" " Set the matrix to its transpose.\n" "\n" - " .. seealso:: `Transpose ` on Wikipedia.\n"); + " .. seealso:: `Transpose `__ on Wikipedia.\n"); static PyObject *Matrix_transpose(MatrixObject *self) { if (BaseMath_ReadCallback_ForWrite(self) == -1) { @@ -2039,7 +2039,7 @@ PyDoc_STRVAR(Matrix_identity_doc, " .. note:: An object with a location and rotation of zero, and a scale of one\n" " will have an identity matrix.\n" "\n" - " .. seealso:: `Identity matrix ` " + " .. seealso:: `Identity matrix `__ " "on Wikipedia.\n"); static PyObject *Matrix_identity(MatrixObject *self) { -- cgit v1.2.3