|
@@ -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)))
|