Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
/type/EVAL (broken) → /routine/EVAL
  • Loading branch information
cfa committed Feb 3, 2019
1 parent 0434083 commit d189ee1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/Language/glossary.pod6
Expand Up @@ -448,7 +448,7 @@ X<|compilation unit>
A compunit is L<a piece of Perl 6 code that is analyzed and compiled as a single unit|https://github.com/rakudo/rakudo/blob/master/docs/module_management.md>.
Typically, this piece of code will be contained in a single file, but code
inside an L<EVAL|/type/EVAL> is also considered a compunit.
inside an L<EVAL|/routine/EVAL> is also considered a compunit.
=head2 DWIM
X<|DWIM>
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Complex.pod6
Expand Up @@ -189,7 +189,7 @@ Defined as:
method perl(Complex:D: --> Str:D)
Returns an implementation-specific string that produces an L<equivalent|/routine/eqv> object
when given to L<EVAL|/type/EVAL>.
when given to L<EVAL|/routine/EVAL>.
say (1-3i).perl; # OUTPUT: «<1-3i>␤»
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/FatRat.pod6
Expand Up @@ -26,7 +26,7 @@ object.
multi method perl(FatRat:D: --> Str:D)
Returns an implementation-specific string that produces an L<equivalent|/routine/eqv> object
when given to L<EVAL|/type/EVAL>.
when given to L<EVAL|/routine/EVAL>.
say FatRat.new(1, 2).perl; # OUTPUT: «FatRat.new(1, 2)␤»
Expand Down
2 changes: 1 addition & 1 deletion doc/Type/Rat.pod6
Expand Up @@ -48,7 +48,7 @@ C<Rat> objects are immutable.
multi method perl(Rat:D: --> Str:D)
Returns an implementation-specific string that produces an L<equivalent|/routine/eqv> object
when given to L<EVAL|/type/EVAL>.
when given to L<EVAL|/routine/EVAL>.
say (1/3).perl; # OUTPUT: «<1/3>␤»
say (2/4).perl; # OUTPUT: «0.5␤»
Expand Down

0 comments on commit d189ee1

Please sign in to comment.