Skip to content

Commit 620d5f3

Browse files
committed
Grammar corrections
1 parent f22c463 commit 620d5f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/attr.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,11 +921,11 @@ gap> DigraphShortestDistances(D);
921921
<Example><![CDATA[
922922
gap> D := Digraph([[1, 2], [3], [1, 2], [4]]);
923923
<immutable digraph with 4 vertices, 6 edges>
924-
gap> UnweightedBellmanFord(D,2)
924+
gap> UnweightedBellmanFord(D, 2)
925925
[ [ 2, 0, 1, fail ], [ 3, fail, 2, fail ] ]
926926
gap> D := CycleDigraph(IsMutableDigraph, 3);
927927
<mutable digraph with 3 vertices, 3 edges>
928-
gap> UnweightedBellmanFord(D,3);
928+
gap> UnweightedBellmanFord(D, 3);
929929
[ [ 1, 2, 0 ], [ 3, 1, fail ] ]
930930
]]></Example>
931931
</Description>

0 commit comments

Comments
 (0)