We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75af3aa commit 00484bcCopy full SHA for 00484bc
src/sage/matrix/matrix0.pyx
@@ -383,10 +383,10 @@ cdef class Matrix(sage.structure.element.Matrix):
383
cdef check_bounds(self, Py_ssize_t i, Py_ssize_t j) noexcept:
384
"""
385
This function gets called when you're about to access the i,j entry
386
- of this matrix. If i, j are out of range, an IndexError is
+ of this matrix. If i, j are out of range, an :class:`IndexError` is
387
raised.
388
389
- if i < 0 or i >= self._nrows or j<0 or j >= self._ncols:
+ if i < 0 or i >= self._nrows or j < 0 or j >= self._ncols:
390
raise IndexError("matrix index out of range")
391
392
cdef check_mutability(self) noexcept:
0 commit comments