Skip to content

Commit

Permalink
sagemathgh-38225: fix trivial typos in graphs/traversals.pyx
Browse files Browse the repository at this point in the history
Fix some trivial typos, one resulting in a formatting error.

URL: sagemath#38225
Reported by: Martin Rubey
Reviewer(s): gmou3
  • Loading branch information
Release Manager committed Jun 18, 2024
2 parents 1fc0dde + 530b27d commit 8d66ac3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/pkgs/configure/checksums.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tarball=configure-VERSION.tar.gz
sha1=f3e560bbf33add8504ba9f7ba93fff9e82e3e445
sha256=bef93be1bb978fa34cd5aaa9c041d1a97a33ff35f88c9df2f9c25e6764770c56
sha1=1008e954db67a27133b23b338a178fb34ff401e1
sha256=3fe774fa4d3941621927c328f7c9271ad683f78fb0e5ae7da349e3ba2b0eb0a3
2 changes: 1 addition & 1 deletion build/pkgs/configure/package-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5c12765f7e585b58ab0cd99f7998cfa615f85247
d11870b4b14ec0f61ebc141ecb80525815d29acf
6 changes: 3 additions & 3 deletions src/sage/graphs/traversals.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,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 @@ -1616,8 +1616,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 8d66ac3

Please sign in to comment.