Skip to content

Commit c15d37a

Browse files
committed
Remove trailing whitespaces.
This really closes #1739 and tip'o'the hat to @coke who usually takes care of this.
1 parent 3d76648 commit c15d37a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/operators.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2499,7 +2499,7 @@ lines creating the data structure that is going to be processed
24992499
map( {"VULGAR FRACTION " ~ $^þ }, @fractions); # (1) Adds string to input
25002500
25012501
# @result is [⅖ ⅗ ⅜ ⅘ ⅚ ⅝ ⅞]
2502-
2502+
25032503
Now we use the feed operator (left-to-right) with parentheses, read top-to-bottom
25042504
25052505
my @result = (
@@ -2519,7 +2519,7 @@ For illustration, method chaining equivalent, read top-to-bottom, using the same
25192519
Although in this particular case the result is the same, the feed operator C«==>» more clearly
25202520
shows intent with arrow pointing the data flow. To assign without
25212521
the need of parentheses use another feed operator
2522-
2522+
25232523
my @result;
25242524
<people of earth>
25252525
==> map({ .tc })
@@ -2529,7 +2529,7 @@ Although in this particular case the result is the same, the feed operator C«==
25292529
25302530
It can be useful to capture a partial result, however, unlike the
25312531
leftward feed operator, it does require parentheses or a semicolon
2532-
2532+
25332533
my @result;
25342534
<people of earth>
25352535
==> map({ .tc })

0 commit comments

Comments
 (0)