Skip to content

Commit b77b8de

Browse files
committed
Eliminating accidental markdown refs #2022
1 parent c442265 commit b77b8de

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

doc/Type/X/Syntax/Augment/WithoutMonkeyTyping.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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 the C<MONKEY-TYPING> pragma
66
77
class X::Syntax::Augment::WithoutMonkeyTyping does X::Syntax { }
88
@@ -11,7 +11,7 @@ Compile time error thrown when C<augment> is used without C<use MONKEY-TYPING>.
1111
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
14-
If you don't do that, for example
14+
If you don't do that, like here
1515
1616
=for code :skip-test
1717
augment class Int { };

doc/Type/X/Syntax/NoSelf.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
=TITLE class X::Syntax::NoSelf
44
5-
=SUBTITLE Compilation error due to implicitly using a `self` that is not there
5+
=SUBTITLE Compilation error due to implicitly using a C<self> that is not there
66
77
class X::Syntax::NoSelf does X::Syntax { }
88
@@ -14,7 +14,7 @@ For example the code
1414
=for code :skip-test<compile time error>
1515
$.meth;
1616
17-
in the mainline throws the error
17+
in the program body throws the error
1818
1919
=for code :lang<text>
2020
===SORRY!===

doc/Type/X/Syntax/Self/WithoutObject.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
=TITLE class X::Syntax::Self::WithoutObject
44
5-
=SUBTITLE Compilation error due to invoking `self` in an ineligible scope
5+
=SUBTITLE Compilation error due to invoking C<self> in an ineligible scope
66
77
class X::Syntax::Self::WithoutObject does X::Syntax { }
88
@@ -14,7 +14,7 @@ For example
1414
=for code :skip-test
1515
self;
1616
17-
in the mainline dies with
17+
outside a class or role declaration dies with
1818
1919
=for code :skip-test
2020
===SORRY!===

doc/Type/X/Syntax/UnlessElse.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
=TITLE class X::Syntax::UnlessElse
44
5-
=SUBTITLE Compilation error due to an `unless` clause followed by `else`
5+
=SUBTITLE Compilation error due to an C<unless> clause followed by C<else>
66
77
class X::Syntax::UnlessElse does X::Syntax { }
88

doc/Type/X/TypeCheck/Return.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
=TITLE class X::TypeCheck::Return
44
5-
=SUBTITLE Error due to a failed typecheck during `return`
5+
=SUBTITLE Error due to a failed typecheck during C<return>
66
77
class X::TypeCheck::Return is X::TypeCheck { }
88

0 commit comments

Comments
 (0)