Skip to content

Commit

Permalink
#39280: add missing backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Jan 8, 2025
1 parent 049ab07 commit f75189b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/graphs/generic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -19473,7 +19473,7 @@ def complement(self, immutable=None):
sage: g.complement()
Graph on 10 vertices

Check the behavior of parameter `ìmmutable``::
Check the behavior of parameter ``immutable``::

sage: type(Graph().complement()._backend)
<class 'sage.graphs.base.dense_graph.DenseGraphBackend'>
Expand Down Expand Up @@ -19550,7 +19550,7 @@ def to_simple(self, to_undirected=True, keep_label='any', immutable=None):

TESTS:

Check the behavior of parameter `ìmmutable``::
Check the behavior of parameter ``immutable``::

sage: G = Graph([(0, 0), (0, 1)] * 2, loops=True, multiedges=True, immutable=True)
sage: H = G.to_simple()
Expand Down Expand Up @@ -19631,7 +19631,7 @@ def disjoint_union(self, other, labels='pairs', immutable=None):

TESTS:

Check the behavior of parameter `ìmmutable``::
Check the behavior of parameter ``immutable``::

sage: G = Graph([(0, 1)])
sage: G.disjoint_union(G).is_immutable()
Expand Down

0 comments on commit f75189b

Please sign in to comment.