Skip to content

Commit 42a5c98

Browse files
committed
Fix some typos in the docs for the allomorph types
1 parent fcfeaf7 commit 42a5c98

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/Type/ComplexStr.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class ComplexStr is Complex is Str
88
9-
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
9+
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
1010
allow for the representation of a value as both a string and a numeric type, typically
1111
they will be created for you when the context is "stringy" but they can be determined
1212
to be numbers, such as in some L<quoting constructs|/language/quoting>:
@@ -37,7 +37,7 @@ directly the values can be whatever is required:
3737
3838
method Numeric
3939
40-
The numeric coercion that is applied when the C<ComplexStr> is used in a numeric context,
40+
The numeric coercion is applied when the C<ComplexStr> is used in a numeric context,
4141
such as a numeric comparison or smart match against a numeric value. It will return
4242
the C<Complex> value.
4343

doc/Type/IntStr.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class IntStr is Int is Str
88
9-
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
9+
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
1010
allow for the representation of a value as both a string and a numeric type, typically
1111
they will be created for you when the context is "stringy" but they can be determined
1212
to be numbers, such as in some L<quoting constructs|/language/quoting>:
@@ -37,7 +37,7 @@ directly the values can be whatever is required:
3737
3838
method Numeric
3939
40-
The numeric coercion that is applied when the C<IntStr> is used in a numeric context,
40+
The numeric coercion is applied when the C<IntStr> is used in a numeric context,
4141
such as a numeric comparison or smart match against a numeric value. It will return
4242
the C<Int> value.
4343

doc/Type/NumStr.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class NumStr is Num is Str
88
9-
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
9+
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
1010
allow for the representation of a value as both a string and a numeric type, typically
1111
they will be created for you when the context is "stringy" but they can be determined
1212
to be numbers, such as in some L<quoting constructs|/language/quoting>:
@@ -37,7 +37,7 @@ directly the values can be whatever is required:
3737
3838
method Numeric
3939
40-
The numeric coercion that is applied when the C<NumStr> is used in a numeric context,
40+
The numeric coercion is applied when the C<NumStr> is used in a numeric context,
4141
such as a numeric comparison or smart match against a numeric value. It will return
4242
the C<Num> value.
4343

doc/Type/RatStr.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class RatStr is Rat is Str
88
9-
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
9+
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
1010
allow for the representation of a value as both a string and a numeric type, typically
1111
they will be created for you when the context is "stringy" but they can be determined
1212
to be numbers, such as in some L<quoting constructs|/language/quoting>:
@@ -37,7 +37,7 @@ directly the values can be whatever is required:
3737
3838
method Numeric
3939
40-
The numeric coercion that is applied when the C<RatStr> is used in a numeric context,
40+
The numeric coercion is applied when the C<RatStr> is used in a numeric context,
4141
such as a numeric comparison or smart match against a numeric value. It will return
4242
the C<Rat> value.
4343

0 commit comments

Comments
 (0)