Skip to content

Commit

Permalink
fix trivial typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mantepse committed Jun 15, 2024
1 parent 31e2166 commit 530b27d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/graphs/traversals.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None
INPUT:
- ``G`` -- a Sage Graph
- ``G`` -- a Sage graph
- ``reverse`` -- boolean (default: ``False``); whether to return the
vertices in discovery order, or the reverse
Expand All @@ -1608,8 +1608,8 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None
By default, return the ordering `\alpha` as a list. When ``tree`` is
``True``, the method returns a tuple `(\alpha, T)`, where `T` is a directed
tree with the same set of vertices as `G`and a directed edge from `u` to `v`
if `u` was the first vertex to saw `v`.
tree with the same set of vertices as `G` and a directed edge from `u` to `v`
if `u` was the first vertex to see `v`.
EXAMPLES:
Expand Down

0 comments on commit 530b27d

Please sign in to comment.