Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
skids committed Jul 22, 2016
1 parent 0c09e85 commit 1b39176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Language/variables.pod6
Expand Up @@ -929,7 +929,7 @@ variables :_>.
my Int $i;
# OUTPUT«===SORRY!=== Error while compiling <tmp>␤Variable definition of type Int:D (implicit :D by pragma) requires an initializer ...
my Int $i = 1; # that works
{ use variables :_; my Int $i; } # switch it of in this block
{ use variables :_; my Int $i; } # switch it off in this block
Please note that assigning L<Nil|/type/Nil> will revert the variable to it's
default value. The default value of a defined constraint type is the type
Expand Down

0 comments on commit 1b39176

Please sign in to comment.