Skip to content

Commit 14724c1

Browse files
authored
Merge pull request #102 from fchapoton/few_typos
a handful of typos
2 parents 35b8b63 + e5a0629 commit 14724c1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/chapter_combinatorialrep.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ matrices with 2 along the diagonal.
181181

182182
<Oper Name="CombinatorialMap" Label="combinatorialmap" Arg="n, sigma, iota, m" />
183183

184-
<Description> Arguments : <Arg>n</Arg> -- number of half-edges, <Arg>sigma</Arg> -- a permutation specifying the ordering of half-edges aroud vertices, <Arg>iota</Arg> -- an involution pairing the half-edges, <Arg>m</Arg> -- a list of marked half-edges
184+
<Description> Arguments : <Arg>n</Arg> -- number of half-edges, <Arg>sigma</Arg> -- a permutation specifying the ordering of half-edges around vertices, <Arg>iota</Arg> -- an involution pairing the half-edges, <Arg>m</Arg> -- a list of marked half-edges
185185
</Description>
186186

187187
<Returns> a combinatorial map, which is an object from the category
@@ -315,7 +315,7 @@ dissected surface given by <Arg>map</Arg>. </Returns>
315315
</Description>
316316

317317
<Returns> a list whose elements are lists of half-edges of the
318-
combiantorial map <Arg>map</Arg>. Each of these lists corresponds to a closed
318+
combinatorial map <Arg>map</Arg>. Each of these lists corresponds to a closed
319319
curve homotopic to a boundary component of the surface represented by
320320
<Arg>map</Arg>. </Returns>
321321

lib/combinatorialmap.gi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## DeclareOperations( "CombinatorialMap", [ size, ordering, pairing, markededge ] )
44
##
55
## Returns the combinatorial map defined by the set consisting of <size>
6-
## elemenst, the ordering of the half edges given by <ordering>, the
6+
## elements, the ordering of the half edges given by <ordering>, the
77
## paring of the half edges given by the <paring>, and the marked half-edges given
88
## by <markededge>. The size of the underlying set given by <size> is given
99
## a positive integer, the ordering and the pairing are given by two
@@ -14,7 +14,7 @@
1414

1515
InstallMethod( CombinatorialMap,
1616

17-
"for positive integer, two permutaions and a list",
17+
"for positive integer, two permutations and a list",
1818

1919
[ IsPosInt, IsPerm, IsPerm, IsList ],
2020

@@ -399,7 +399,7 @@ end
399399
##
400400
## DeclareAttribute( "BoundaryCurvesOfCombinatorialMap", map)
401401
##
402-
## Returns a list whose elements are lists of half-edges of the combiantorial map <map>. Each of these
402+
## Returns a list whose elements are lists of half-edges of the combinatorial map <map>. Each of these
403403
## lists corresponds to a closed curve homotopic to a boundary component of the
404404
## surface represented by <map>. The closed curves are represented by a list of adjacent half-edges.
405405
## The orientation of these curves is chosen so that the corresponding boundary component
@@ -748,7 +748,7 @@ end
748748
##
749749

750750
InstallMethod( JoinCurveCombinatorialMap,
751-
"For a CombinatorialMap and two lists detailling the boudaries to join, returns a list corresponding to a simple curve joining the two boundaries, starting and ending at vertices that are identified in the original CombinatorialMap.",
751+
"For a CombinatorialMap and two lists detailing the boundaries to join, returns a list corresponding to a simple curve joining the two boundaries, starting and ending at vertices that are identified in the original CombinatorialMap.",
752752
[IsCombinatorialMap, IsList, IsList, IsList],
753753

754754
function(combmap,bound1,bound2, index)
@@ -803,7 +803,7 @@ end
803803

804804

805805
InstallMethod( CutJoinCurveCombinatorialMap,
806-
" for a CombinatorialMap, two lists detailling boundaries, a list of arcs joining these boundaries and an index for the half-edges, returns the CombinatorialMap obtained by cutting the surface along the curve joining the two boundaries and the updated index corresponding to the cut.",
806+
" for a CombinatorialMap, two lists detailing boundaries, a list of arcs joining these boundaries and an index for the half-edges, returns the CombinatorialMap obtained by cutting the surface along the curve joining the two boundaries and the updated index corresponding to the cut.",
807807
[IsCombinatorialMap, IsList, IsList,IsList,IsList],
808808

809809
function(combmap,bound1,bound2,curve,index)

0 commit comments

Comments
 (0)