diff --git a/build/pkgs/configure/checksums.ini b/build/pkgs/configure/checksums.ini index da9cfbb1ff9..41ce4e323a5 100644 --- a/build/pkgs/configure/checksums.ini +++ b/build/pkgs/configure/checksums.ini @@ -1,3 +1,3 @@ tarball=configure-VERSION.tar.gz -sha1=f3e560bbf33add8504ba9f7ba93fff9e82e3e445 -sha256=bef93be1bb978fa34cd5aaa9c041d1a97a33ff35f88c9df2f9c25e6764770c56 +sha1=f57c102c66ca7a0af46ea972845a023a36bb5a3e +sha256=5e17d7ccff071684e1f1cca48368d4f17dc917078ce47443c39415c434af58d9 diff --git a/build/pkgs/configure/package-version.txt b/build/pkgs/configure/package-version.txt index ca5926f5634..7dc863e07ad 100644 --- a/build/pkgs/configure/package-version.txt +++ b/build/pkgs/configure/package-version.txt @@ -1 +1 @@ -5c12765f7e585b58ab0cd99f7998cfa615f85247 +73b38aa8157a589273972e7531e40d877fb374be diff --git a/src/sage/graphs/traversals.pyx b/src/sage/graphs/traversals.pyx index b6c6a4c5b6a..4b9ba208b01 100644 --- a/src/sage/graphs/traversals.pyx +++ b/src/sage/graphs/traversals.pyx @@ -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 @@ -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: