Pārlūkot izejas kodu

Merge pull request #12 from xmlblog/patch-1

Typo correction in comment in lists.lsp
Stanley Bileschi 12 gadi atpakaļ
vecāks
revīzija
4921b37d21
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      koans/lists.lsp

+ 2 - 2
koans/lists.lsp

@@ -14,7 +14,7 @@
14 14
 
15 15
 
16 16
 ;; based on python koans 'about_lists.py'
17
-;; based also on "Lisp 3rd addition" ch. 17. "List storage, surgery and reclamation"
17
+;; based also on "Lisp 3rd Edition" ch. 17. "List storage, surgery and reclamation"
18 18
 
19 19
 
20 20
 (define-test test-creating-lists
@@ -106,4 +106,4 @@
106 106
     "cdr (aka. 'rest') refers to the remainder of the list,
107 107
      after the first element"
108 108
   (assert-equal ___ (cdr '(1 2 3)))
109
-  (assert-equal ___ (cdr nil)))
109
+  (assert-equal ___ (cdr nil)))