Skip to content

Commit

Permalink
Fix some typos in the docs for the allomorph types
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterDuke17 committed May 25, 2016
1 parent fcfeaf7 commit 42a5c98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions doc/Type/ComplexStr.pod
Expand Up @@ -6,7 +6,7 @@
class ComplexStr is Complex is Str
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
allow for the representation of a value as both a string and a numeric type, typically
they will be created for you when the context is "stringy" but they can be determined
to be numbers, such as in some L<quoting constructs|/language/quoting>:
Expand Down Expand Up @@ -37,7 +37,7 @@ directly the values can be whatever is required:
method Numeric
The numeric coercion that is applied when the C<ComplexStr> is used in a numeric context,
The numeric coercion is applied when the C<ComplexStr> is used in a numeric context,
such as a numeric comparison or smart match against a numeric value. It will return
the C<Complex> value.
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/IntStr.pod
Expand Up @@ -6,7 +6,7 @@
class IntStr is Int is Str
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
allow for the representation of a value as both a string and a numeric type, typically
they will be created for you when the context is "stringy" but they can be determined
to be numbers, such as in some L<quoting constructs|/language/quoting>:
Expand Down Expand Up @@ -37,7 +37,7 @@ directly the values can be whatever is required:
method Numeric
The numeric coercion that is applied when the C<IntStr> is used in a numeric context,
The numeric coercion is applied when the C<IntStr> is used in a numeric context,
such as a numeric comparison or smart match against a numeric value. It will return
the C<Int> value.
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/NumStr.pod
Expand Up @@ -6,7 +6,7 @@
class NumStr is Num is Str
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
allow for the representation of a value as both a string and a numeric type, typically
they will be created for you when the context is "stringy" but they can be determined
to be numbers, such as in some L<quoting constructs|/language/quoting>:
Expand Down Expand Up @@ -37,7 +37,7 @@ directly the values can be whatever is required:
method Numeric
The numeric coercion that is applied when the C<NumStr> is used in a numeric context,
The numeric coercion is applied when the C<NumStr> is used in a numeric context,
such as a numeric comparison or smart match against a numeric value. It will return
the C<Num> value.
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/RatStr.pod
Expand Up @@ -6,7 +6,7 @@
class RatStr is Rat is Str
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>
The dual value types (often referred to as L<allomorphs|/language/glossary#Allomorph>)
allow for the representation of a value as both a string and a numeric type, typically
they will be created for you when the context is "stringy" but they can be determined
to be numbers, such as in some L<quoting constructs|/language/quoting>:
Expand Down Expand Up @@ -37,7 +37,7 @@ directly the values can be whatever is required:
method Numeric
The numeric coercion that is applied when the C<RatStr> is used in a numeric context,
The numeric coercion is applied when the C<RatStr> is used in a numeric context,
such as a numeric comparison or smart match against a numeric value. It will return
the C<Rat> value.
Expand Down

0 comments on commit 42a5c98

Please sign in to comment.