Merge pull request #1017 from jefferickson/patch-1

Minor typo: fixed curly bracket direction (} -> {)
This commit is contained in:
ven 2015-03-26 00:06:17 +01:00
commit bc7fd77654

View File

@ -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"