Skip to content

Commit

Permalink
#39285: suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Jan 26, 2025
1 parent 6c03a8a commit e6a2aa1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/sage/graphs/generic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -19815,7 +19815,7 @@ def cartesian_product(self, other, immutable=None):
sage: B.is_isomorphic(Q.subgraph(V)) # needs sage.combinat
True

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

sage: A = Graph([(0, 1)])
sage: B = Graph([('a', 'b')], immutable=True)
Expand Down Expand Up @@ -19930,7 +19930,7 @@ def tensor_product(self, other, immutable=None):
sage: T.is_isomorphic(digraphs.DeBruijn(2 * 3, 3))
True

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

sage: A = Graph([(0, 1)])
sage: B = Graph([('a', 'b')], immutable=True)
Expand Down Expand Up @@ -20040,7 +20040,7 @@ def lexicographic_product(self, other, immutable=None):
sage: T.is_isomorphic(J.lexicographic_product(I))
False

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

sage: A = Graph([(0, 1)])
sage: B = Graph([('a', 'b')], immutable=True)
Expand Down Expand Up @@ -20152,7 +20152,7 @@ def strong_product(self, other, immutable=None):
sage: product_size == expected
True

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

sage: A = Graph([(0, 1)])
sage: B = Graph([('a', 'b')], immutable=True)
Expand Down Expand Up @@ -20266,7 +20266,7 @@ def disjunctive_product(self, other, immutable=None):
sage: T.is_isomorphic(J.disjunctive_product(I))
True

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

sage: A = Graph([(0, 1)])
sage: B = Graph([('a', 'b')], immutable=True)
Expand Down

0 comments on commit e6a2aa1

Please sign in to comment.