Skip to content

Commit e8a3012

Browse files
committed
Merge branch 'master' into spellcheck
2 parents c61c7d1 + 6a285c2 commit e8a3012

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/Language/glossary.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ various Perl 6 related L<repositories|#Repository>.
303303
X<|yoleaux>
304304
305305
The L<#Bot> on the #perl6 L<#IRC> channel that provides various services
306-
to people logged in. Commands to yoleax (a pun on YOLO) start with a period.
306+
to people logged in. Commands to yoleaux (a pun on YOLO) start with a period.
307307
Some often used commands are:
308308
309309
=head3 .tell

doc/Language/rb-nutshell.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ will continue:
3030
In Perl 6 you must explicitly terminate statements with a C<;>, which allows
3131
for better feedback and more flexibility in breaking up long lines. Two
3232
exceptions not needing an explicit C<;> are the last statement in a block, and
33-
after the closing curley brace of the block itself (if there is nothing else on
33+
after the closing curly brace of the block itself (if there is nothing else on
3434
that line):
3535
3636
if 5 < $x < 10 {
@@ -191,7 +191,7 @@ C<%calories<apple>>, C<%calories<pear plum>>). Variables using the C<%> sigil
191191
can only contain things that do the C<Associative> role.
192192
193193
Ruby uses square brackets to access values for both Arrays and Hashes. Perl 6
194-
uses curley braces for hashes instead. The angle-brackets version is available
194+
uses curly braces for hashes instead. The angle-brackets version is available
195195
which always autoquotes its contents (strings without quotes):
196196
197197
Adverbs can be used to control the type of slice.

doc/Type/Parameter.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on what most of the concepts related to parameters mean.
2525
Returns the variable name, which includes all sigils and twigils.
2626
This name is used internally when applied to code, or in a declaration
2727
determines the name declared. This name is not necessarily
28-
useable by a caller – if it is, it will also appear as an
28+
usable by a caller – if it is, it will also appear as an
2929
L<alias|#method named_names>. Often, the name will chosen descriptively
3030
as a form of self-documentation.
3131

0 commit comments

Comments
 (0)