summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
diff options
context:
space:
mode:
authorIan Bertolacci <ian.bertolacci@gmail.com>2015-10-02 10:15:08 -0600
committerIan Bertolacci <ian.bertolacci@gmail.com>2015-10-02 10:15:08 -0600
commit53790a00980f0ab58efeea5a20c97366daeca401 (patch)
tree60cced8d7b62becacd31b6fb56d9a7c41f1de809 /perl6.html.markdown
parent938720074b8b18a9ada93fb8a040b9ca1a813747 (diff)
parentd5b5b19ca909b573d0b0623604f1ff9369ab04ff (diff)
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r--perl6.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown
index de7d2f25..8d425f7d 100644
--- a/perl6.html.markdown
+++ b/perl6.html.markdown
@@ -213,7 +213,7 @@ say $x; #=> 52
# - `if`
# Before talking about `if`, we need to know which values are "Truthy"
# (represent True), and which are "Falsey" (or "Falsy") -- represent False.
-# Only these values are Falsey: (), 0, "", Nil, A type (like `Str` or `Int`),
+# Only these values are Falsey: 0, (), {}, "", Nil, A type (like `Str` or `Int`),
# and of course False itself.
# Every other value is Truthy.
if True {