diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-03-18 12:14:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 12:14:51 +0530 |
commit | 47fe9495ca6ad680ed1e5cf5f94326322dfb2e9b (patch) | |
tree | 6ed0a3714fa9e26eedb0d50c5563c5f9ddb506d2 /lambda-calculus.html.markdown | |
parent | 0133c434ff0e5eec5649f6fc13d7b6e2ba6af227 (diff) | |
parent | 753325355a8e22b050fb32e3e48d74cb20d92403 (diff) |
Merge pull request #3497 from brianberns/patch-1
Fix #3487
Diffstat (limited to 'lambda-calculus.html.markdown')
-rw-r--r-- | lambda-calculus.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lambda-calculus.html.markdown b/lambda-calculus.html.markdown index a5535d6c..53a7a7cd 100644 --- a/lambda-calculus.html.markdown +++ b/lambda-calculus.html.markdown @@ -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)`* |