diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-08 22:50:04 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-08 22:50:04 +0200 |
commit | c48b1b533c1eda5374f8afefd63e7089dafb21a5 (patch) | |
tree | 7cf6aa1958c84f208fa3bd6536d561cbfba73253 /perl6.html.markdown | |
parent | 005c2d3bb268b6046aaa0151236ead2841a839d7 (diff) | |
parent | 087bc761d527857455e19664f4af99ae972754a5 (diff) |
Merge pull request #1393 from aayushranaut/master
Fixes typos and removed useless spaces
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r-- | perl6.html.markdown | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 63c0830a..2b45f661 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -132,7 +132,7 @@ sub with-named($normal-arg, :$named) { with-named(1, named => 6); #=> 7 # There's one gotcha to be aware of, here: # If you quote your key, Perl 6 won't be able to see it at compile time, -# and you'll have a single Pair object as a positional paramater, +# and you'll have a single Pair object as a positional parameter, # which means this fails: with-named(1, 'named' => 6); @@ -197,7 +197,7 @@ sub mutate($n is rw) { say "\$n is now $n !"; } -# If what you want is a copy instead, use `is copy`. +# If what you want a copy instead, use `is copy`. # A sub itself returns a container, which means it can be marked as rw: my $x = 42; @@ -234,7 +234,7 @@ say "Quite truthy" if True; # - Ternary conditional, "?? !!" (like `x ? y : z` in some other languages) my $a = $condition ?? $value-if-true !! $value-if-false; -# - `given`-`when` looks like other languages `switch`, but much more +# - `given`-`when` looks like other languages' `switch`, but much more # powerful thanks to smart matching and thanks to Perl 6's "topic variable", $_. # # This variable contains the default argument of a block, @@ -1461,4 +1461,3 @@ If you want to go further, you can: - Come along on `#perl6` at `irc.freenode.net`. The folks here are always helpful. - Check the [source of Perl 6's functions and classes](https://github.com/rakudo/rakudo/tree/nom/src/core). Rakudo is mainly written in Perl 6 (with a lot of NQP, "Not Quite Perl", a Perl 6 subset easier to implement and optimize). - Read [the language design documents](http://design.perl6.org). They explain P6 from an implementor point-of-view, but it's still very interesting. - |