Skip to content

Commit

Permalink
src/sage/tensor/modules/free_module_basis.py: Fix markup, doctest out…
Browse files Browse the repository at this point in the history
…put indentation
  • Loading branch information
mkoeppe committed Apr 18, 2024
1 parent 7ffbdeb commit 2aeb7a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/tensor/modules/free_module_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Basis_abstract(UniqueRepresentation, AbstractFamily):
:class:`Mapping` subclasses, not the :meth:`keys` but the
:meth:`values` are considered the elements.
EXAMPLES:
EXAMPLES::
sage: M = FiniteRankFreeModule(ZZ, 3, name='M', start_index=1)
sage: e = M.basis('e'); e
Expand Down Expand Up @@ -112,8 +112,8 @@ def values(self):
sage: e = M.basis('e')
sage: list(e.values())
[Element e_0 of the Rank-3 free module M over the Integer Ring,
Element e_1 of the Rank-3 free module M over the Integer Ring,
Element e_2 of the Rank-3 free module M over the Integer Ring]
Element e_1 of the Rank-3 free module M over the Integer Ring,
Element e_2 of the Rank-3 free module M over the Integer Ring]
"""
return self._vec

Expand Down

0 comments on commit 2aeb7a6

Please sign in to comment.