Skip to content

Commit

Permalink
typo it's -> its
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Oct 13, 2021
1 parent dccd8a2 commit 8eb9c50
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 @@ -3492,7 +3492,7 @@ def antisymmetric(self):
True
"""
if not self._directed:
# An undirected graph is antisymmetric only if all it's edges are
# An undirected graph is antisymmetric only if all its edges are
# loops
return self.size() == len(self.loop_edges())
if self.has_loops():
Expand Down Expand Up @@ -23481,7 +23481,7 @@ def edge_polytope(self, backend=None):
True

The EP of a graph is isomorphic to the subdirect sum of
it's connected components EPs::
its connected components EPs::

sage: n = randint(3, 6)
sage: G1 = graphs.RandomGNP(n, 0.2)
Expand Down Expand Up @@ -23583,7 +23583,7 @@ def symmetric_edge_polytope(self, backend=None):
True

The SEP of a graph is isomorphic to the subdirect sum of
it's connected components SEP's::
its connected components SEP's::

sage: n = randint(3, 6)
sage: G1 = graphs.RandomGNP(n, 0.2)
Expand Down

0 comments on commit 8eb9c50

Please sign in to comment.