Skip to content

Commit 35c0ba5

Browse files
committed
Merge pull request #74 from worktycho/patch-1
removed double as from src/operators.pod
2 parents aac7aa1 + 909d053 commit 35c0ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/operators.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ X<meta operator, reduce>
142142
The infix C<max> operator returns the greater of two values, so C<2 max 3>
143143
returns 3. Square brackets around an infix operator cause Perl to apply the
144144
operator to a list element by element. C<[max] 1, 5, 3, 7> is the same as C<1
145-
max 5 max 3 max 7> and evaluates to C<7>. You might know this as as I<reduce>
145+
max 5 max 3 max 7> and evaluates to C<7>. You might know this as I<reduce>
146146
from other programming languages.
147147

148148
Likewise, you can write C<[+]> to get the sum of a list of values, C<[*]> for

0 commit comments

Comments
 (0)