correct 2 sphinx warnings.

This commit is contained in:
2012-02-08 16:36:04 +00:00
parent 2c088c5857
commit 5a42ff381c
2 changed files with 3 additions and 3 deletions

View File

@@ -1166,7 +1166,7 @@ PyDoc_STRVAR(Matrix_invert_doc,
"\n"
" Set the matrix to its inverse.\n"
"\n"
" .. note:: :exc:`ValueError` exception is raised.\n"
" .. note:: When the matrix cant be inverted a :exc:`ValueError` exception is raised.\n"
"\n"
" .. seealso:: <http://en.wikipedia.org/wiki/Inverse_matrix>\n"
);
@@ -1240,7 +1240,7 @@ PyDoc_STRVAR(Matrix_inverted_doc,
" :return: the inverted matrix.\n"
" :rtype: :class:`Matrix`\n"
"\n"
" .. note:: :exc:`ValueError` exception is raised.\n"
" .. note:: When the matrix cant be inverted a :exc:`ValueError` exception is raised.\n"
);
static PyObject *Matrix_inverted(MatrixObject *self)
{