Skip to content

Commit d201389

Browse files
committed
prefer non-hyphenated
1 parent 0852a84 commit d201389

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/Language/5to6-nutshell.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ with adverbs.
400400
Index and slice operations on hashes no longer inflect the variable's
401401
L<sigil|#%_Hash>, and adverbs can be used to control the type of slice.
402402
Also, single-word subscripts are no longer magically autoquoted inside the
403-
curly braces; instead, the new angle-brackets version is available which
403+
curly braces; instead, the new angle brackets version is available which
404404
always autoquotes its contents (using the same rules as the C<qw//> quoting
405405
construct):
406406

doc/Language/rb-nutshell.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ C<%calories<apple>>, C<%calories<pear plum>>). Variables using the C<%> sigil
225225
can only contain things that do the C<Associative> role.
226226
227227
Ruby uses square brackets to access values for both Arrays and Hashes. Perl 6
228-
uses curly braces for hashes instead. The angle-brackets version is available
228+
uses curly braces for hashes instead. The angle brackets version is available
229229
which always autoquotes its contents (strings without quotes):
230230
231231
Adverbs can be used to control the type of slice.

doc/Language/subscripts.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ allows arbitrary objects as keys, etc.:
4949
say $stats{ Date.new(2015, 4, 4) + 1 }; # OUTPUT: «17.253␤»
5050
5151
For passing single-word string keys to C<{ }>, you can also use the
52-
L<angle-bracketed word quoting constructs|/language/quoting#Word_quoting:_qw>
52+
L<angle bracketed word quoting constructs|/language/quoting#Word_quoting:_qw>
5353
as if they were postcircumfix operators:
5454
5555
my %grade = Zoe => "C", Ben => "B+";

0 commit comments

Comments
 (0)