Skip to content

Commit 72d3a7b

Browse files
committed
remove trailing whitespace
1 parent 1122a88 commit 72d3a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/control.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ that case and C<Any> smart matches on C<True>: C<Any ~~ True> yields C<True>).
342342
my $b = True;
343343
when $a { say 'a' }; # no output
344344
when so $a { say 'a' } # a (in "so $a" 'so' coerces $a to Boolean context True
345-
# which matches with Any)
345+
# which matches with Any)
346346
when $b { say 'b' }; # b (b is True as defined so matches with Any)
347347
}
348348
=end code

0 commit comments

Comments
 (0)