Fix typos.
authorOlof-Joachim Frahm <olof@macrolet.net>
Thu, 23 Aug 2012 17:59:53 +0000 (19:59 +0200)
committerStelian Ionescu <sionescu@cddr.org>
Fri, 24 Aug 2012 23:33:57 +0000 (01:33 +0200)
src/check.lisp
src/random.lisp
src/run.lisp
src/suite.lisp

index 12f2256..21f7bf4 100644 (file)
@@ -121,7 +121,7 @@ REASON-ARGS is provided, is generated based on the form of TEST:
  (predicate value) - Means that we want to ensure that VALUE
  satisfies PREDICATE.
 
- Wrapping the TEST form in a NOT simply preducse a negated reason
+ Wrapping the TEST form in a NOT simply produces a negated reason
  string."
   (assert (listp test)
           (test)
index 446f710..6b2059a 100644 (file)
@@ -144,7 +144,7 @@ Examples:
   (:method ((object t)) nil))
 
 (defmethod reason ((result for-all-test-failed))
-  (format nil "Falsafiable with ~S" (slot-value result 'failure-values)))
+  (format nil "Falsifiable with ~S" (slot-value result 'failure-values)))
 
 (defclass for-all-test-no-tests (test-failure for-all-test-result)
   ())
index 2f9d363..417acd8 100644 (file)
@@ -221,7 +221,7 @@ run."))
 ;;;; ** Public entry points
 
 (defun run! (&optional (test-spec *suite*))
-  "Equivalent to (explain (run TEST-SPEC))."
+  "Equivalent to (explain! (run TEST-SPEC))."
   (explain! (run test-spec)))
 
 (defun explain! (result-list)
index a71c6eb..972e1f6 100644 (file)
@@ -79,7 +79,7 @@ See also: DEF-SUITE *SUITE*"
          (progn
            (when ,fail-on-error
              (cerror "Create a new suite named ~A."
-                     "Unkown suite ~A." ',suite-name))
+                     "Unknown suite ~A." ',suite-name))
            (setf (get-test ',suite-name) (make-suite ',suite-name :in ',in)
                  *suite* (get-test ',suite-name))))
        ',suite-name)))