Skip to content

Commit 0fe9413

Browse files
committed
s/MONKEY_TYPING/MONKEY-TYPING/
1 parent 3e81edc commit 0fe9413

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

lib/Type/X/Anon/Augment.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Compile time error thrown when trying to augment an anonymous package.
1010
1111
For example
1212
13-
use MONKEY_TYPING;
13+
use MONKEY-TYPING;
1414
augment class { }
1515
1616
Dies with

lib/Type/X/Augment/NoSuchType.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thrown when trying to augment a type which doesn't exist.
1010
1111
For example
1212
13-
use MONKEY_TYPING;
13+
use MONKEY-TYPING;
1414
augment class NoSuch { }
1515
1616
dies with

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Compile time error thrown when trying to augment a role.
1010
1111
For example
1212
13-
use MONKEY_TYPING;
13+
use MONKEY-TYPING;
1414
augment role Positional { }
1515
1616
dies with

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
33
=TITLE class X::Syntax::Augment::WithoutMonkeyTyping
44
5-
=SUBTITLE Compilation error due to augmenting a type without `MONKEY_TYPING`
5+
=SUBTITLE Compilation error due to augmenting a type without `MONKEY-TYPING`
66
77
class X::Syntax::Augment::WithoutMonkeyTyping does X::Syntax { }
88
9-
Compile time error thrown when C<augment> is used without C<use MONKEY_TYPING>.
9+
Compile time error thrown when C<augment> is used without C<use MONKEY-TYPING>.
1010
1111
Since C<augment> is considered a rather unsafe and impolate action, you have
12-
to pre-declare your intent with the C<use MONKEY_TYPING;> pragma.
12+
to pre-declare your intent with the C<use MONKEY-TYPING;> pragma.
1313
1414
If you don't do that, for example
1515
@@ -18,6 +18,6 @@ If you don't do that, for example
1818
you get the error
1919
2020
===SORRY!===
21-
augment not allowed without 'use MONKEY_TYPING'
21+
augment not allowed without 'use MONKEY-TYPING'
2222
2323
=end pod

0 commit comments

Comments
 (0)