Skip to content

Commit 7630c2b

Browse files
committed
fix minor spelling errors and typos
1 parent 9fc6dd0 commit 7630c2b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

lib/Type/X/Comp.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and public accessors.
1515
If an error occurs while creating an object (like a class or routine) at
1616
compile time, generally the exception associated with it does not hold a
1717
reference to the object (for example a class would not be fully composed, and
18-
thus not usuable). In those cases the name of the would-be-created object
18+
thus not usable). In those cases the name of the would-be-created object
1919
is included in the error message instead.
2020
2121
=head1 Methods

lib/Type/X/ControlFlow.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class X::ControlFlow is Exception { }
66
77
Thrown when a control flow construct (such as C<next> or C<redo>) is called
8-
outside the dyanmic scope of an enclosing construct that is supposed to catch
8+
outside the dynamic scope of an enclosing construct that is supposed to catch
99
them.
1010
1111
For example

lib/Type/X/NYI.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ exception when a program uses a feature that it can detect is not yet
1212
implemented.
1313
1414
A full-featured Perl 6 compiler must not throw such exceptions, but
15-
still provide the C<X::NYI> class for compatiblity reasons.
15+
still provide the C<X::NYI> class for compatibility reasons.
1616
1717
A typical error message is
1818

lib/Type/X/OutOfRange.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Returns the object that was considered out of range (often an integer)
3636
3737
method range returns Range:D
3838
39-
Returns a L<Range> object describing the premissible range for the object
39+
Returns a L<Range> object describing the permissible range for the object
4040
returned from C<.got>.
4141
4242
=head2 method comment
4343
4444
method comment returns Str
4545
46-
Returns an additiona comment that is included in the error message.
46+
Returns an additional comment that is included in the error message.
4747
4848
=end pod

lib/Type/X/Redeclaration.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
class X::Redeclaration does X::Comp { }
66
7-
Thrown when a symbol (variable, routine, type, paramater, ...) is redeclared.
7+
Thrown when a symbol (variable, routine, type, parameter, ...) is redeclared.
88
Note that redeclarations are generally fine in an inner scope, but if the
99
redeclaration appears in the same scope as the original declaration,
1010
it usually indicates an error and is treated as one.

lib/Type/X/Str/Numeric.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
class X::Str::Numeric is Exception { }
66
7-
Error thrown (or wrapped in a C<Failure>) when a a conversion from string to
7+
Error thrown (or wrapped in a C<Failure>) when a conversion from string to
88
a number fails.
99
1010
For example

0 commit comments

Comments
 (0)