Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
One typo and one angle-bracket doubling
  • Loading branch information
revhippie committed Jan 13, 2016
1 parent a7aa693 commit 6bee7f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/Language/5to6-perlsyn.pod
Expand Up @@ -32,7 +32,7 @@ documents at L<http://design.perl6.org/> and input from the denizens of
Perl 6 is still I<largely> free form. However, there are a few instances
where the presence or lack of whitespace is now significant. For
instance, in Perl 5, you can omit a space following a keyword (e. g.
C<while($x < 5)> or C<my($x, $y)>). In Perl 6, that space is required,
C<<while($x < 5)>> or C<my($x, $y)>). In Perl 6, that space is required,
thus C<while ($x < 5)> or C<my ($x, $y)>. In Perl 6, however, you can
omit the parentheses altogether: C<< while $x < 5 >>. This holds for
C<if>, C<for>, etc.
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/containers.pod
Expand Up @@ -123,7 +123,7 @@ changes the contents of the other.
You've seen this situation before: it is exactly what happened with the
signature parameter marked as C<is rw>.
Sigilless variabes also bind by default and so do parameters with the trait C<is raw>.
Sigilless variables also bind by default and so do parameters with the trait C<is raw>.
my $a = 42;
my \b = $a;
Expand Down

0 comments on commit 6bee7f2

Please sign in to comment.