diff options
author | Geoff Liu <g@geoffliu.me> | 2015-08-28 11:50:04 -0600 |
---|---|---|
committer | Geoff Liu <g@geoffliu.me> | 2015-08-28 11:50:04 -0600 |
commit | f4ab326784f571e3bb532f5f60a87fc1aea47552 (patch) | |
tree | bb5082a3b2ebdf295af1cd144241c124c517f460 /perl6.html.markdown | |
parent | 97b97408eab97fbe322df4266cda9ab2ed21fceb (diff) | |
parent | 96ad94ad867a6226cd90db5c2ff764eb930c6ad6 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r-- | perl6.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index de7d2f25..af545793 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: (), "", Nil, A type (like `Str` or `Int`), # and of course False itself. # Every other value is Truthy. if True { |