Skip to content

Commit 8d66ac3

Browse files
author
Release Manager
committed
gh-38225: fix trivial typos in graphs/traversals.pyx
Fix some trivial typos, one resulting in a formatting error. URL: #38225 Reported by: Martin Rubey Reviewer(s): gmou3
2 parents 1fc0dde + 530b27d commit 8d66ac3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build/pkgs/configure/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=f3e560bbf33add8504ba9f7ba93fff9e82e3e445
3-
sha256=bef93be1bb978fa34cd5aaa9c041d1a97a33ff35f88c9df2f9c25e6764770c56
2+
sha1=1008e954db67a27133b23b338a178fb34ff401e1
3+
sha256=3fe774fa4d3941621927c328f7c9271ad683f78fb0e5ae7da349e3ba2b0eb0a3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5c12765f7e585b58ab0cd99f7998cfa615f85247
1+
d11870b4b14ec0f61ebc141ecb80525815d29acf

src/sage/graphs/traversals.pyx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None
16011601
16021602
INPUT:
16031603
1604-
- ``G`` -- a Sage Graph
1604+
- ``G`` -- a Sage graph
16051605
16061606
- ``reverse`` -- boolean (default: ``False``); whether to return the
16071607
vertices in discovery order, or the reverse
@@ -1616,8 +1616,8 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None
16161616
16171617
By default, return the ordering `\alpha` as a list. When ``tree`` is
16181618
``True``, the method returns a tuple `(\alpha, T)`, where `T` is a directed
1619-
tree with the same set of vertices as `G`and a directed edge from `u` to `v`
1620-
if `u` was the first vertex to saw `v`.
1619+
tree with the same set of vertices as `G` and a directed edge from `u` to `v`
1620+
if `u` was the first vertex to see `v`.
16211621
16221622
EXAMPLES:
16231623

0 commit comments

Comments
 (0)