Skip to content

Commit 4d200a8

Browse files
committed
Merge pull request #539 from titsuki/fix-yada
Add missing semicolons
2 parents 97ef172 + af876ce commit 4d200a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Routine.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Restores the original routine after it has been wrapped with L<wrap>.
6262
6363
Returns C<True> if the routine is a stub
6464
65-
say (sub f() { ... }).yada # True
66-
say (sub g() { 1; }).yada # False
65+
say (sub f() { ... }).yada; # True
66+
say (sub g() { 1; }).yada; # False
6767
6868
=head2 trait is cached
6969

0 commit comments

Comments
 (0)