Skip to content

Commit 056bec0

Browse files
authored
fix grammar & remove reference to quoting
The remark that «» quotes are "also a valid quoting construct in Raku" is more confusing here, since the quoting construct semantics are very different from how they're used in "OUTPUT: «...»" comments.
1 parent e4c3d5d commit 056bec0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/intro.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ my @a = 1, 2, 3;
7272
say @a; # OUTPUT: «[2 3 4]␤»
7373

7474
Note on the last line, there is a comment, starting with C<# OUTPUT:>, that shows what the example outputs.
75-
The output is wrapped in C<«»> quotes (also a valid quoting construct in Raku!), and may include a C<␤>, which
76-
is the Unicode character "Symbol for Newline" - to indicates where in the actual output a literal newline would
75+
The output is wrapped in C<«»> quotes and may include a C<␤>, which
76+
is the Unicode character "Symbol for Newline", to indicate where in the actual output a literal newline would
7777
appear.
7878

7979
=end item

0 commit comments

Comments
 (0)