Skip to content

Commit fa517be

Browse files
committed
Fix typos in S02, S21, S99, S32/IO, and S32/Exception
1 parent 9c428a9 commit fa517be

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

S02-bits.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ the appropriate type unless explicitly initialized to a defined value.
694694
Any container's default may be overridden by the C<is default(VALUE)>
695695
trait. If the container's contents are deleted, the value is
696696
notionally set to the provided default value; this value may or may not
697-
be physically represented in memory, depending on the implemention
697+
be physically represented in memory, depending on the implementation
698698
of the container. You should officially not care about that (much).
699699

700700
=head2 The C<HOW> Method
@@ -1391,7 +1391,7 @@ Conceptual types rely on the failure to match an C<Any> type in
13911391
order to trigger various extraordinary behaviors. The C<Junction>
13921392
and C<Each> types trigger an inside-out linguistic distribution of
13931393
various list behaviors from inside a scalar expression that pretends
1394-
a bunch of values are really a single value. (These are modelled on
1394+
a bunch of values are really a single value. (These are modeled on
13951395
similar linguistic behaviors in English.) The distributional behavior
13961396
triggered for these types is known as I<autothreading>.
13971397

S21-calling-foreign-code.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Hypotheticals:
204204
=over
205205

206206
=item
207-
We need better facilities for signalling when it's appropriate to free data.
207+
We need better facilities for signaling when it's appropriate to free data.
208208
The current facilities have the benefit that it won't cause memory-related
209209
errors later on, but on the flip side, it will leak memory over time.
210210

S32-setting-library/Exception.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ is allowed (for example C<CATCH> or C<CONTROL>).
298298

299299
=head3 X::Parameter::Default
300300

301-
Thrown when a paramter has a default, but isn't allowed to have one, for
301+
Thrown when a parameter has a default, but isn't allowed to have one, for
302302
example on mandatory parameters.
303303

304304
my class X::Parameter::Default does X::Comp {
@@ -365,7 +365,7 @@ example optional before mandatory parameters).
365365

366366
=head3 X::Signature::NameClash
367367

368-
Thrown when multiple named paramters have the same name.
368+
Thrown when multiple named parameters have the same name.
369369

370370
my class X::Signature::NameClash does X::Comp {
371371
has $.name;
@@ -1041,7 +1041,7 @@ Thrown when an argument to C<Str.trans> is not a C<Pair>.
10411041
my class X::Str::Trans::InvalidArg is Exception {
10421042
has $.got;
10431043
method message() {
1044-
"Only Pair objects are allowed as arguemnts to Str.trans, got {$.got.^name}";
1044+
"Only Pair objects are allowed as arguments to Str.trans, got {$.got.^name}";
10451045
}
10461046
}
10471047

S32-setting-library/IO.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ This can, however, be used to extend C<dir()> through its `$test` parameter:
10471047
dir( "my/directory", test=>
10481048
all(IO::Spec.no-parent-or-current-test, /^ '.' /));
10491049

1050-
This example would return all files begining with a period that are
1050+
This example would return all files beginning with a period that are
10511051
not `.` or `..` directories. This would work similarly with IO::Path.contents.
10521052

10531053
This method replaces the functionality of the Perl 5 C<no_updirs> method.

S99-glossary.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ result data is returned.
669669

670670
=head2 Rakudo
671671

672-
An implementation of Perl 6 originally targetting L</Parrot>, it now targets
672+
An implementation of Perl 6 originally targeting L</Parrot>, it now targets
673673
Parrot, the L</JVM>, and (soon) L</MoarVM> through L</NQP>.
674674

675675
=head2 Rakudo *

0 commit comments

Comments
 (0)