Skip to content

Commit

Permalink
Fix version typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfa committed Mar 2, 2019
1 parent f0751d9 commit ef106eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/Language/control.pod6
Expand Up @@ -154,7 +154,7 @@ start { sleep 1; say "done" }
say "working";
# working, done
Note that you need a space between the C<start> and the block. In the example above, the C<start> block is in sink context, since it's not assigned to a variable. From version 6.3, these kind of blocks have an exception handler attached:
Note that you need a space between the C<start> and the block. In the example above, the C<start> block is in sink context, since it's not assigned to a variable. From version 6.d, these kind of blocks have an exception handler attached:
=for code :skip-test<Illustrates exception>
start { die "We're dead"; }
Expand Down
2 changes: 1 addition & 1 deletion doc/Language/variables.pod6
Expand Up @@ -1098,7 +1098,7 @@ These can also be accessed by the shortcuts C<$0>, C<$1>, C<$2>, etc.
say $0; # OUTPUT: «「bbbbb」␤»
say $1; # OUTPUT: «「dddddeff」␤»
To get all of the positional attributes, you can use C<$/.list> or C<@$/>. Before 6.3, you can also use the C<@()> shortcut (no spaces inside the
To get all of the positional attributes, you can use C<$/.list> or C<@$/>. Before 6.d, you can also use the C<@()> shortcut (no spaces inside the
parentheses).
say @$/.join; # OUTPUT: «bbbbbdddddeff␤»
Expand Down

0 comments on commit ef106eb

Please sign in to comment.