From 072b8ebe223f55d3768a24a2b4b673dd556b0a3c Mon Sep 17 00:00:00 2001 From: Bahman Movaqar Date: Tue, 22 Dec 2020 12:05:34 -0800 Subject: [PATCH] fix a typo - fixed a typo in the sample output provided for `s-assoc-value` - modified the sample to match the ones further below --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aaa3ac4..f6895cf 100644 --- a/README.md +++ b/README.md @@ -679,9 +679,9 @@ The arguments are in the opposite order of `cl:assoc`'s, but are consistent with `alexandria:assoc-value` (and `str`). ```lisp -(s-assoc-value '(("hello" . 1) ("world" . 2)) "world") -;; => 1 -;; ("world" . 2) +(s-assoc-value '(("hello" . 1)) "hello") +;; 1 +;; ("hello" . 1) (alexandria:assoc-value '(("hello" . 1)) "hello") ;; NIL