Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #539 from titsuki/fix-yada
Add missing semicolons
  • Loading branch information
titsuki committed May 23, 2016
2 parents 97ef172 + af876ce commit 4d200a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Routine.pod
Expand Up @@ -62,8 +62,8 @@ Restores the original routine after it has been wrapped with L<wrap>.
Returns C<True> if the routine is a stub
say (sub f() { ... }).yada # True
say (sub g() { 1; }).yada # False
say (sub f() { ... }).yada; # True
say (sub g() { 1; }).yada; # False
=head2 trait is cached
Expand Down

0 comments on commit 4d200a8

Please sign in to comment.