Skip to content

Commit

Permalink
Updated examples changed by PR #444
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Konovalov committed Jan 14, 2016
1 parent 76a4366 commit a0ba7ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/ref/intrfc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ true
gap> b:=mkposet([2,3,4]);
[ 2, 3, 4 ]
gap> a+b;
[ 1, 2, 3, 4 ]
[ 1 .. 4 ]
gap> a*b;
[ 2, 3 ]
gap> s:=Semigroup(a,b);
Expand Down
2 changes: 1 addition & 1 deletion doc/ref/pperm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ gap> DomainOfPartialPerm(f);
gap> S := SymmetricInverseSemigroup(5);
<symmetric inverse monoid of degree 5>
gap> ImageOfPartialPermCollection(GeneratorsOfInverseSemigroup(S));
[ 1, 2, 3, 4, 5 ]]]></Example>
[ 1 .. 5 ]]]></Example>
</Description>
</ManSection>

Expand Down
2 changes: 1 addition & 1 deletion lib/coll.gd
Original file line number Diff line number Diff line change
Expand Up @@ -3089,7 +3089,7 @@ DeclareOperation( "Intersection2",
## [ 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 20, 25 ]
## gap> Union( [ [1,2,4], [2,3,4], [1,3,4] ] )
## > ; # or one list of lists or collections
## [ 1, 2, 3, 4 ]
## [ 1 .. 4 ]
## gap> Union( [ ] );
## [ ]
## ]]></Example><P/>
Expand Down
2 changes: 1 addition & 1 deletion lib/oprt.gd
Original file line number Diff line number Diff line change
Expand Up @@ -1602,7 +1602,7 @@ OrbitishFO( "Blocks",
## is a subset of one block.
## <Example><![CDATA[
## gap> MaximalBlocks(g,[1..8]);
## [ [ 1, 2, 3, 8 ], [ 4, 5, 6, 7 ] ]
## [ [ 1, 2, 3, 8 ], [ 4 .. 7 ] ]
## ]]></Example>
## </Description>
## </ManSection>
Expand Down

0 comments on commit a0ba7ba

Please sign in to comment.