Skip to content

Commit f650dfe

Browse files
committed
Further spelling/typo fixes.
1 parent 048a52a commit f650dfe

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

doc/Type/Any.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ L«C<Seq.skip>|/type/Seq#method_skip» on it.
641641
You can apply them to classes too, resulting in empty lists or lists
642642
that contain a single class. This is not a real use case, and it is
643643
mostly intended to show the calling syntax. Please note that calling
644-
C<skip> without argument is equivalente to C<skip(1)>.
644+
C<skip> without argument is equivalent to C<skip(1)>.
645645
646646
say Any.skip; # OUTPUT: «()␤»
647647
say Any.skip(5); # OUTPUT: «()␤»

doc/Type/Associative.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Defined as:
3939
4040
method of()
4141
42-
C<Associative> is actually a L<parametrized role|/language/objects#Parameterized_Roles>
42+
C<Associative> is actually a L<parameterized role|/language/objects#Parameterized_Roles>
4343
which can use different classes for keys and values. As seen above, by default
4444
it coerces to C<Str> for the key and uses a very generic C<Mu> for value.
4545
@@ -59,9 +59,9 @@ Defined as:
5959
6060
method keyof()
6161
62-
Returns the parametrized key used for the Associative role, which is C<Any>
62+
Returns the parameterized key used for the Associative role, which is C<Any>
6363
coerced to C<Str> by default. This is the class used as second parameter when
64-
you use the parametrized version of Associative.
64+
you use the parameterized version of Associative.
6565
6666
my %any-hash;
6767
%any-hash.keyof; #OUTPUT: «(Str(Any))␤»

doc/Type/Buf.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A C<Buf> is a mutable sequence of (usually unsigned) integers.
1111
my $b = Buf.new(1, 2, 3);
1212
$b[1] = 42;
1313
14-
However, it's a parametrized type, and you can instantiate with several
14+
However, it's a parameterized type, and you can instantiate with several
1515
integer types:
1616
1717
=for code

doc/Type/CompUnit/Repository/FileSystem.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Unlike L<CompUnit::Repository::Installation>, this represents a single distribut
2121
multi method candidates(Str:D $name, :$auth, :$ver, :$api)
2222
multi method candidates(CompUnit::DependencySpecification $spec)
2323
24-
Return all distributions that contain a module matching the specificed C<$name>, C<auth>,
24+
Return all distributions that contain a module matching the specified C<$name>, C<auth>,
2525
C<ver>, and C<api>.
2626
2727
# assuming one is cloned into the zef git repository...

doc/Type/CompUnit/Repository/Installation.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ the repository it is being removed from:
5151
multi method candidates(Str:D $name, :$auth, :$ver, :$api)
5252
multi method candidates(CompUnit::DependencySpecification $spec)
5353
54-
Return all distributions that contain a module matching the specificed C<$name>, C<auth>,
54+
Return all distributions that contain a module matching the specified C<$name>, C<auth>,
5555
C<ver>, and C<api>.
5656
5757
my $inst-repo-path = CompUnit::RepositoryRegistry.repository-for-name("perl").prefix;

doc/Type/Hash.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ them in the same order:
2121
say %orig.perl; # OUTPUT: «{:a(1), :b(5), :c(6)}␤»
2222
2323
In this case, C<b> will always be associated to 5 and C<c> to 6; even if two
24-
succesive calls to C<keys> will return them in different order. Successive calls
24+
successive calls to C<keys> will return them in different order. Successive calls
2525
to any of them separately and repeatedly will always return the same order in
2626
any program invocation.
2727

doc/Type/IO/CatHandle.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class IO::CatHandle is IO::Handle { }
88
9-
Thic class has been available in Rakudo since version 2017.06.
9+
This class has been available in Rakudo since version 2017.06.
1010
1111
The C<IO::CatHandle> class provides a means to create an L<IO::Handle> that
1212
seamlessly gathers input from multiple L<IO::Handle> and L<IO::Pipe> sources.

doc/Type/Parameter.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,13 +344,13 @@ and a named parameter is required.
344344
=item optional
345345
346346
Optional. Indicates whether the parameter is optional or not. Should only be
347-
specified if the C<?> postix is B<not> specified in the name and an optional
347+
specified if the C<?> postfix is B<not> specified in the name and an optional
348348
parameter is required.
349349
350350
=item mandatory
351351
352352
Optional. Indicates whether the parameter is mandatory or not. Should only be
353-
specified if the C<!> postix is B<not> specified in the name and a mandatory
353+
specified if the C<!> postfix is B<not> specified in the name and a mandatory
354354
parameter is required.
355355
356356
=item multi-invocant

doc/Type/PredictiveIterator.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ method, which should return the number of values the Iterator is still
1313
able to generate.
1414
1515
The other addition is the C<bool-only> method, that should return a
16-
C<Bool> indicating whether the Iterator is stil capable of producing
16+
C<Bool> indicating whether the Iterator is still capable of producing
1717
values (aka, is not exhausted yet). By default, this is the Booleanification
1818
of the result of the call to the C<count-only> method.
1919

doc/Type/Signature.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ declared in each case (using C<=> for parameters, using the C<default>
382382
trait for variables).
383383
384384
Note: in 6.c language, the default default of C<:U>/C<:D> constrained
385-
variables was a type object with such a constraint, which is not initializeable,
385+
variables was a type object with such a constraint, which is not initializable,
386386
thus you cannot use the C<.=> operator, for example.
387387
388388
=for code :solo

0 commit comments

Comments
 (0)