Skip to content

Commit 4699773

Browse files
author
Release Manager
committed
gh-36388: fix typographic typos Fix a few typographic typos in `thematic_tutorials/tutorial- implementing-algebraic-structures`: missing double backtick, missing underscore. - [X] The title is concise, informative, and self-explanatory. - [X] The description explains in detail what this PR is about. URL: #36388 Reported by: Martin Rubey Reviewer(s): David Coudert, Martin Rubey
2 parents 970fd9f + ad09d52 commit 4699773

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/doc/en/thematic_tutorials/tutorial-implementing-algebraic-structures.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Since we defined the class interactively, instead of in a Python
179179
module, those tests will complain about "pickling". We can silence this
180180
error by making sage think that the class is defined in a module. We could also
181181
just ignore those failing tests for now or call :class:`TestSuite` with the
182-
argument `skip='_test_pickling')`::
182+
argument ``skip='_test_pickling')``::
183183

184184
sage: import __main__
185185
sage: __main__.MyCyclicGroupAlgebra = MyCyclicGroupAlgebra
@@ -238,7 +238,7 @@ Exercises
238238
#. Make a tiny modification to ``product_on_basis`` in
239239
"MyCyclicGroupAlgebra" to implement the *dual* of the group algebra
240240
of the cyclic group instead of its group algebra (so the product is now given by
241-
`b_fb_g=\delta_{f,g}bf`).
241+
`b_fb_g=\delta_{f,g}b_f`).
242242

243243
Run the :class:`TestSuite` tests (you may ignore the "pickling"
244244
errors). What do you notice?
@@ -319,7 +319,7 @@ Diagonal and Triangular Morphisms
319319

320320
We now illustrate how to specify that a given morphism is diagonal or triangular
321321
with respect to some order on the basis, which means that the morphism is
322-
invertible and `Sage` is able to compute the inverse morphism automatically.
322+
invertible and Sage is able to compute the inverse morphism automatically.
323323
Currently this feature requires the domain and codomain to have the same index
324324
set (in progress ...).
325325

@@ -659,7 +659,7 @@ particular, this construction says that they are:
659659
There is a bit of redundancy here: given that ``A`` knows it is a
660660
commutative algebra with realizations the infrastructure could, in
661661
principle, determine that its realizations are commutative algebras. If this
662-
was done then it would be possible to implement `Bases.super_categories` by
662+
was done then it would be possible to implement ``Bases.super_categories`` by
663663
returning::
664664

665665
[A.Realizations().WithBasis()]

0 commit comments

Comments
 (0)