Skip to content

Commit

Permalink
Merge pull request adambard#1017 from jefferickson/patch-1
Browse files Browse the repository at this point in the history
Minor typo: fixed curly bracket direction (} -> {)
  • Loading branch information
vendethiel committed Mar 25, 2015
2 parents 649e7b0 + 965d797 commit bc7fd77
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 bc7fd77

Please sign in to comment.