From e9e0ca502a3747d19da3e29c0b4001987dcb03d4 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Wed, 11 Apr 2018 10:04:59 -0700 Subject: [PATCH] fix docstring for `match` In the second example provided in the `match` docstring, `1` fails to match `2` and so the whole form evaluates to `NIL`. --- src/match.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/match.lisp b/src/match.lisp index 1c780ff..496e8a7 100644 --- a/src/match.lisp +++ b/src/match.lisp @@ -47,7 +47,7 @@ Examples: (match 1 (1 1)) => 1 (match 1 (2 2)) - => 2 + => NIL (match 1 (x x)) => 1 (match (list 1 2 3)