diff options
author | Brian Berns <brianberns@gmail.com> | 2019-03-17 13:36:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-17 13:36:27 -0400 |
commit | 753325355a8e22b050fb32e3e48d74cb20d92403 (patch) | |
tree | 6ed0a3714fa9e26eedb0d50c5563c5f9ddb506d2 /lambda-calculus.html.markdown | |
parent | 0133c434ff0e5eec5649f6fc13d7b6e2ba6af227 (diff) |
Update lambda-calculus.html.markdown
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)`* |