Skip to content

Commit

Permalink
fixed documentation error in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
MeikeWeiss committed Aug 28, 2024
1 parent d7f6b18 commit 5f77862
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 @@ -1400,10 +1400,10 @@ gap> DigraphAllChordlessCycles(D);
gap> D := Digraph([[1, 1]]);
<immutable multidigraph with 1 vertex, 2 edges>
gap> DigraphAllChordlessCycles(D);
[ ]
[ ]
gap> D := CycleDigraph(3);;
gap> DigraphAllChordlessCycles(D);
[ [ 1, 2, 3 ] ]
[ [ 2, 1, 3 ] ]
gap> D := CompleteDigraph(4);
<immutable complete digraph with 4 vertices>
gap> DigraphAllChordlessCycles(D);
Expand Down

0 comments on commit 5f77862

Please sign in to comment.