Explorar o código

Merge pull request #7 from rjsamson/typo

Typo in evaluation.lsp
Stanley Bileschi %!s(int64=12) %!d(string=hai) anos
pai
achega
570cf576c7
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      koans/evaluation.lsp

+ 2 - 2
koans/evaluation.lsp

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