Skip to content

Commit aabab44

Browse files
committed
Strip accumulated trailing whitespace
1 parent 9d6b726 commit aabab44

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/Language/variables.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ X<|$*SPEC>X<|$*TMPDIR>X<|$*THREAD>X<|$*SCHEDULER>
11821182
Note on usage of $*SCHEDULER:
11831183
11841184
For the current Rakudo, by default this imposes a maximum of 16 threads on the methods
1185-
C<.hyper> and C<.race>. To change the maximum number of threads, either set the
1185+
C<.hyper> and C<.race>. To change the maximum number of threads, either set the
11861186
environment variable RAKUDO_MAX_THREADS before running perl6 or create a scoped copy
11871187
with the default changed before using C<.hyper> or C<.race>:
11881188

doc/Type/Any.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ take> to create a lazy list.
203203
204204
my @a = [[1,2,3],[[4,5],6,7]];
205205
sub deepflat(@a){
206-
gather for @a {
207-
take ($_ ~~ Iterable ?? deepflat($_).Slip !! $_)
208-
}
206+
gather for @a {
207+
take ($_ ~~ Iterable ?? deepflat($_).Slip !! $_)
208+
}
209209
};
210210
dd deepflat(@a);'
211211
# OUTPUT«(1, 2, 3, 4, 5, 6, 7).Seq␤»

doc/Type/Range.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A Range can be used in a subscript to get a range of values. Please note that
5252
assigning a Range to a scalar container turns the Range into a item. Use
5353
binding, @-sigiled containers or a slip to get what you mean.
5454
55-
my @numbers = <4 8 15 16 23 42>;
55+
my @numbers = <4 8 15 16 23 42>;
5656
my $range := 0..2;
5757
.say for @numbers[$range];
5858
# OUTPUT«4␤8␤15␤»

0 commit comments

Comments
 (0)