Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Aug 22, 2016
1 parent cfa04d8 commit 2ff9fbc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion doc/Language/5to6-nutshell.pod6
Expand Up @@ -58,7 +58,7 @@ promising.
=head2 Identifiers
In identifiers, Perl 6 allows the use of dashes (C<->), underscores (C<_>), apostrophes (C<'>), and alphanumerics:
In identifiers, Perl 6 allows the use of dashes (C<->), underscores (C<_>), apostrophes (C<'>), and alphanumerics:
sub test-doesn't-hang { ... }
my $ความสงบ = 42;
Expand Down
6 changes: 3 additions & 3 deletions doc/Language/io.pod6
Expand Up @@ -77,9 +77,9 @@ explicit encoding can be specified via the C<:enc> option:
=for code :skip-test
spurt "testfile", "latin1 text: äöüß", enc => "latin1";
Writing formatted strings to a file is not directly supported at the moment because function
'printf' is not yet a method of C<IO::Handle>. However, as a work-around, one can use
function 'sprintf' to assign a formatted string to a C<Str> object that can then be
Writing formatted strings to a file is not directly supported at the moment because function
'printf' is not yet a method of C<IO::Handle>. However, as a work-around, one can use
function 'sprintf' to assign a formatted string to a C<Str> object that can then be
used with methods '.say' or '.print' as desired.
To append to a file, specify the C<:a> option when opening the file handle
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/mop.pod6
Expand Up @@ -51,7 +51,7 @@ These are introspective macros that resemble method calls.
Metamethods are generally named with ALLCAPS, and it is considered good
style to avoid creating your own methods with ALLCAPS names. This will avoid
conflicts with any metamethods that may appear in future versions of the
language.
language.
=head2 X<WHAT|syntax,WHAT>
Expand Down

0 comments on commit 2ff9fbc

Please sign in to comment.