Skip to content

Commit f30a2b0

Browse files
author
GlitchMr
committed
Merge pull request #1 from muixirt/master
Fixed some typos
2 parents 75fb570 + eda5ad0 commit f30a2b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/operators.pod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In an expression like C<1 + 2 * 3>, the C<2 * 3> is evaluated first
88
because the infix C<*> has tighter B<precedence> than the C<+>.
99
1010
The following table summarizes the precedence levels in Perl 6, from
11-
tighetest to loosest:
11+
tightest to loosest:
1212
1313
=begin table
1414
@@ -83,16 +83,16 @@ Operators can occur in several positions relative to a term:
8383
term1 + term2 infix
8484
term++ postfix
8585
(term) circumfix
86-
term1[term1] postcirumfix
86+
term1[term2] postcircumfix
8787
8888
=end table
8989
9090
Each operator is also available as a routine; postcircumfix operators as
9191
methods, all others as subroutines. The name of the routine is formed of
92-
the operator category, then a colon, and a list quote construct with they
92+
the operator category, then a colon, and a list quote construct with the
9393
symbol(s) that make up the operator:
9494
9595
infix:<+>(1, 2) # same as 1 + 2
96-
cirumfix:«( )»('a', 'b', 'c') # same as ('a', 'b', 'c')
96+
circumfix:«( )»('a', 'b', 'c') # same as ('a', 'b', 'c')
9797
9898
=end pod

0 commit comments

Comments
 (0)