Skip to content

Commit

Permalink
Grammar corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
baydrea committed Jan 26, 2022
1 parent f22c463 commit 620d5f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/attr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -921,11 +921,11 @@ gap> DigraphShortestDistances(D);
<Example><![CDATA[
gap> D := Digraph([[1, 2], [3], [1, 2], [4]]);
<immutable digraph with 4 vertices, 6 edges>
gap> UnweightedBellmanFord(D,2)
gap> UnweightedBellmanFord(D, 2)
[ [ 2, 0, 1, fail ], [ 3, fail, 2, fail ] ]
gap> D := CycleDigraph(IsMutableDigraph, 3);
<mutable digraph with 3 vertices, 3 edges>
gap> UnweightedBellmanFord(D,3);
gap> UnweightedBellmanFord(D, 3);
[ [ 1, 2, 0 ], [ 3, 1, fail ] ]
]]></Example>
</Description>
Expand Down

0 comments on commit 620d5f3

Please sign in to comment.