Skip to content

Commit

Permalink
Minor typo: fixed curly bracket direction (} -> {)
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferickson committed Mar 25, 2015
1 parent 649e7b0 commit 965d797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perl6.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ subset VeryBigInteger of Int where * > 500;
multi sub sayit(Int $n) { # note the `multi` keyword here
say "Number: $n";
}
multi sayit(Str $s) } # a multi is a `sub` by default
multi sayit(Str $s) { # a multi is a `sub` by default
say "String: $s";
}
sayit("foo"); # prints "String: foo"
Expand Down

0 comments on commit 965d797

Please sign in to comment.