aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-09 16:19:35 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-09 16:19:35 +0900
commit33b263f2e381501a8525d6e5463d950d863efb16 (patch)
tree4b5412ec16bf03629ab9349bca24c5f6b97045fd
parentd5ec78a3169a284a337a95fbe60f22aedfd98e4e (diff)
Update README.md
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c5c24c6..d0cd6f3 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ $ chicken-install
(prefix (data optional monad) opt:))
;; (opt:map (lambda (x) (* x x)) (opt:pure 5)) => (some 25)
-;; (opt:map (lambda (x) (* x x)) (opt:none)) => (some 25)
+;; (opt:map (lambda (x) (* x x)) (opt:none)) => (none)
;; (opt:map* + (opt:pure 1) (opt:pure 2) (opt:pure 3)) => (some 6)
;; (opt:map* + (opt:pure 1) (opt:none) (opt:pure 3)) => (none)