Merge pull request #1188 from gkubisa/patch-1

Fix "and" operator in lua.md
This commit is contained in:
Rico Sta. Cruz 2019-09-01 16:32:16 +10:00 committed by GitHub
commit 7c933b55be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

3
lua.md
View File

@ -183,8 +183,9 @@ title: Lua
-
-- Logic (and/or)
nil and 10 --> 10
nil and false --> nil
false and nil --> false
0 and 20 --> 20
10 and 20 --> 20