From 50440246008572472fcaac446fc1f98e44e8e8a3 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sun, 4 Sep 2022 11:21:15 -0700 Subject: [PATCH] FiniteRankDualFreeModule: Doc fixes --- src/sage/tensor/modules/finite_rank_free_module.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sage/tensor/modules/finite_rank_free_module.py b/src/sage/tensor/modules/finite_rank_free_module.py index f970d9e7f17..1bd5d13b8b6 100644 --- a/src/sage/tensor/modules/finite_rank_free_module.py +++ b/src/sage/tensor/modules/finite_rank_free_module.py @@ -2977,7 +2977,7 @@ class FiniteRankDualFreeModule(FiniteRankFreeModule_abstract): Dual of a free module of finite rank over a commutative ring. Given a free module `M` of finite rank over a commutative ring `R`, - the *dual of* `M` is the set `M^*` of all linear forms `p` on `M`, + the *dual of* `M` is the set `M^*` of all linear forms on `M`, i.e., linear maps .. MATH:: @@ -2991,10 +2991,10 @@ class FiniteRankDualFreeModule(FiniteRankFreeModule_abstract): - ``fmodule`` -- free module `M` of finite rank, as an instance of :class:`~sage.tensor.modules.finite_rank_free_module.FiniteRankFreeModule` - - ``name`` -- (default: ``None``) string; name given to `\Lambda^p(M^*)` + - ``name`` -- (default: ``None``) string; name given to `M^*` - ``latex_name`` -- (default: ``None``) string; LaTeX symbol to denote `M^*` - EXAMPLES: + EXAMPLES:: sage: M = FiniteRankFreeModule(ZZ, 3, name='M') sage: e = M.basis('e')