Skip to content

Commit a1aeb93

Browse files
committed
typos
1 parent 60aff10 commit a1aeb93

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/Language/objects.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ Logging[$*OUT].log(debug, 'here we go'); # [DEBUG] here we go
699699
=end code
700700
701701
You can have multiple roles of the same name, but with different signatures;
702-
the normal rules of multi dispatch apply for chosing multi candidates.
702+
the normal rules of multi dispatch apply for choosing multi candidates.
703703
704704
705705
=head1 Meta-Object Programming and Introspection

lib/Type/Cool.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ imaginary part negated).
125125
sub sqrt(Numeric(Cool) $x)
126126
127127
Coerces the invocant to L<Numeric|/type/Numeric> (or in the sub form, the
128-
arguemnt) and returns the square root,
128+
argument) and returns the square root,
129129
that is, a non-negative number that, when multiplied with itself, produces the
130130
original number.
131131
@@ -350,7 +350,7 @@ base C<e> (Euler's Number) if no base was supplied
350350
Coerces the invocant (or in the sub form, the invocant) to
351351
L<Numeric|/type/Numeric>, and returns its
352352
L<Logarithm|https://en.wikipedia.org/wiki/Logarithm> to base 10, that is, a
353-
number that approximatly produces the original number when raised to the power
353+
number that approximately produces the original number when raised to the power
354354
of 10.
355355
356356
say log10(1001); # 3.00043407747932
@@ -561,7 +561,7 @@ accepts everything), this title-cases each word:
561561
562562
say "perl 6 programming".wordcase; # Perl 6 Programming
563563
564-
With a mather:
564+
With a matcher:
565565
566566
say "have fun working on perl".wordcase(:where({ .chars > 3 }));
567567
# Have fun Working on Perl

lib/Type/Dateish.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Both L<Date|/type/Date> and L<DateTime|/type/DateTime> support accessing a
1010
year, month and day-of-month, as well as related functionality such as
11-
calcuating the day of the week.
11+
calculating the day of the week.
1212
1313
=head1 Methods
1414

lib/Type/X/Proc/Async/MustBeStarted.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class X::Proc::Async::MustBeStarted is Exception { ... }
88
9-
Several methods from L<Proc::Async> excpect that the external program has been
9+
Several methods from L<Proc::Async> expect that the external program has been
1010
spawned (by calling C<.start> on it), including C<say>, C<write>, C<print> and
1111
C<close-stdin>. If one of those methods is called before C<.start> was called,
1212
they throw an exception of type C<X::Proc::Async::MustBeStarted>.

lib/Type/X/Syntax/Augment/WithoutMonkeyTyping.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Compile time error thrown when C<augment> is used without C<use MONKEY-TYPING>.
1010
11-
Since C<augment> is considered a rather unsafe and impolate action, you have
11+
Since C<augment> is considered a rather unsafe and impolite action, you have
1212
to pre-declare your intent with the C<use MONKEY-TYPING;> pragma.
1313
1414
If you don't do that, for example

lib/Type/X/Syntax/Reserved.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class X::Syntax::Reserved does X::Syntax { }
88
9-
Syntax error thrwon when a syntax is used which is reserved for future
9+
Syntax error thrown when a syntax is used which is reserved for future
1010
expansion.
1111
1212
For example

0 commit comments

Comments
 (0)