aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 34698f7..314a388 100644
--- a/README.md
+++ b/README.md
@@ -152,11 +152,11 @@ Using standard library:
:test snd love = you
# options
- :test map succ (some +1) = some +2
- :test apply (some +1) [some (succ 0)] = some +2
+ :test map inc (some +1) = some +2
+ :test apply (some +1) [some (inc 0)] = some +2
# numerical operations
- five pred (sub (add +8 -4) -2)
+ five dec (sub (add +8 -4) -2)
not-five? [if (eq? 0 +5) F T]
:test not-five? five = F