diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-09-25 12:25:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 12:25:34 +0530 |
commit | b3ad4017a533cbc45620b5d9aad3af7527576240 (patch) | |
tree | 2bcc798031dfcc3a4c61baeeb58d1f5aaaf2296d | |
parent | 01140bd131582bd4504ecf444dc3e3c79f428b8c (diff) | |
parent | 92dff0c07c2b6ae3d14e01046302168a86352a33 (diff) |
Merge pull request #3227 from stigtsp/master
[CommonLisp/en] fixed inconsistency between code and output value
-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 76e7735b..28b5173b 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -502,7 +502,7 @@ nil ; false; also, the empty list: () (fact 5) ; => 120 -(loop :for x :across "abc" :collect x) +(loop :for x :across "abcd" :collect x) ; => (#\a #\b #\c #\d) (dolist (i '(1 2 3 4)) |