Merge pull request #3497 from brianberns/patch-1

Fix #3487
This commit is contained in:
Divay Prakash 2019-03-18 12:14:51 +05:30 committed by GitHub
commit 47fe9495ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ Using `IF`, we can define the basic boolean logic operators:
`a OR b` is equivalent to: `λab.IF a T b`
`a NOT b` is equivalent to: `λa.IF a F T`
`NOT a` is equivalent to: `λa.IF a F T`
*Note: `IF a b c` is essentially saying: `IF((a b) c)`*