Skip to content

Commit

Permalink
Fix two code indentations
Browse files Browse the repository at this point in the history
- method EVAL on Cool was unnecessarily indented in a =for code block
- an example on the Match page was not indented
  • Loading branch information
taboege committed Jun 11, 2019
1 parent 7313da6 commit fda1bc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/Type/Cool.pod6
Expand Up @@ -147,7 +147,7 @@ imaginary part negated).
Defined as:
=for code :method
method EVAL(*%_)
method EVAL(*%_)
It calls the L<subroutine form|/type/independent-routines#sub_mkdir> with the
invocant as the first argument, C<$code>, passing along named args, if any.
Expand Down
4 changes: 2 additions & 2 deletions doc/Type/Match.pod6
Expand Up @@ -76,8 +76,8 @@ specific.
Returns a string representation of the object against which the regex matches. This is the value that the regex engine works with internally.
my $a = "þor" ~~ /o/;
say $a.target # OUTPUT: «þor␤»
my $a = "þor" ~~ /o/;
say $a.target # OUTPUT: «þor␤»
=head2 method chars
Expand Down

0 comments on commit fda1bc8

Please sign in to comment.