|
@@ -40,8 +40,8 @@
|
40
|
40
|
|
41
|
41
|
|
42
|
42
|
(define-test test-quoting-behavior
|
43
|
|
- "Preceding a list with a quote (') will tell lisp not to evalute a list.
|
44
|
|
- The quote special form suppresses normal evaluation, an instead returns
|
|
43
|
+ "Preceding a list with a quote (') will tell lisp not to evaluate a list.
|
|
44
|
+ The quote special form suppresses normal evaluation, and instead returns
|
45
|
45
|
the literal list.
|
46
|
46
|
Evaluating the form (+ 1 2) returns the number 3,
|
47
|
47
|
but evaluating the form '(+ 1 2) returns the list (+ 1 2)"
|