Skip to content

Commit 8133ada

Browse files
committed
sagemath#39287: fix missing backquotes
1 parent a676b63 commit 8133ada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/graphs/generic_graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20213,7 +20213,7 @@ def transitive_closure(self, loops=None, immutable=None):
2021320213
sage: G.transitive_closure(loops=False).loop_edges(labels=False)
2021420214
[]
2021520215

20216-
Check the behavior of parameter `ìmmutable``::
20216+
Check the behavior of parameter ``immutable``::
2021720217

2021820218
sage: G = Graph([(0, 1)])
2021920219
sage: G.transitive_closure().is_immutable()
@@ -20276,7 +20276,7 @@ def transitive_reduction(self, immutable=None):
2027620276

2027720277
TESTS:
2027820278

20279-
Check the behavior of parameter `ìmmutable``::
20279+
Check the behavior of parameter ``immutable``::
2028020280

2028120281
sage: G = Graph([(0, 1)])
2028220282
sage: G.transitive_reduction().is_immutable()

0 commit comments

Comments
 (0)