Browse Source

Merge pull request #14 from kjgorman/typo

fixed typo in comment.
Stanley Bileschi 12 years ago
parent
commit
5f84893811
1 changed files with 1 additions and 1 deletions
  1. 1 1
      koans/functions.lsp

+ 1 - 1
koans/functions.lsp

@@ -106,7 +106,7 @@
106 106
 ;; ----
107 107
 
108 108
 
109
-;; borrowed from common listp the language 5.2.2
109
+;; borrowed from common lisp the language 5.2.2
110 110
 (defun func-with-funky-parameters (a &rest x &key b (c a))
111 111
    (list a b c x))
112 112