diff options
author | ven <vendethiel@hotmail.fr> | 2014-10-27 20:01:55 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2014-10-27 20:01:55 +0100 |
commit | 67de7d7281ce9703665cfcbf240cd2c79bac450c (patch) | |
tree | 50efdf0daef9a6da7d8913cb1e1b1cb58559c933 | |
parent | 2a6e60d83be7e778fb684b1c417f9175f5a768a3 (diff) |
[Common Lisp/en] Add a missing argument to `(walker)`
-rw-r--r-- | common-lisp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index 08134e35..c4ecb5e8 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -431,7 +431,7 @@ nil ; for false - and the empty list :walked (walker (1- n)))) -(walker) ; => :walked +(walker 5) ; => :walked ;; Most of the time, we use DOLIST or LOOP |