Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed May 23, 2018
1 parent 792e1fa commit f389be2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/Language/5to6-perlsyn.pod6
Expand Up @@ -100,7 +100,7 @@ block in the body of the loop.
=begin code :lang<perl5>
# Perl 5
# Perl 5
my $str = '';
for (1..5) {
next if $_ % 2 == 1;
Expand All @@ -113,7 +113,7 @@ continue {
=end code
=begin code
# Perl 6
# Perl 6
my $str = '';
for 1..5 {
next if $_ % 2 == 1;
Expand Down
4 changes: 2 additions & 2 deletions doc/Language/modules.pod6
Expand Up @@ -416,9 +416,9 @@ export sub:
unit module Bar;
sub EXPORT { %(Foo => &say) } # WRONG!!! Sub is scoped wrong
# ---------
sub EXPORT { %(Foo => &say) } # RIGHT!!! Sub is outside the module
unit module Bar;
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/regexes.pod6
Expand Up @@ -350,7 +350,7 @@ write the backslashed forms for character classes between the C<[ ]>.
# starts with \d and removes odd ASCII digits, but not quite the same as
/ <[02468]> /;
# because the first one also contains "weird" unicodey digits
You can include Unicode properties in the list as well:
/<:Zs + [\x9] - [\xA0]>/
Expand Down
2 changes: 1 addition & 1 deletion util/perl-nbsp.p6
Expand Up @@ -25,7 +25,7 @@ sub check-line($line, $state) {
default { $state }
}
}
 

my @promises = @files.map(-> $file {
Promise.start({
my Str @contents;
Expand Down
2 changes: 1 addition & 1 deletion xt/perl-nbsp.t
Expand Up @@ -7,7 +7,7 @@ use Test-Files;

=begin overview
Insure any text that mentions Perl uses a no-break space after it.
Insure any text that mentions Perl uses a no-break space after it.
=end overview

Expand Down

0 comments on commit f389be2

Please sign in to comment.