From: Marco Baringer Date: Wed, 18 Jan 2006 11:14:14 +0000 (+0100) Subject: Fix a few typos in the docs. (Reported by: Peter Gijsels ) X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=7caced9155e32d2e04db2f574057c33f3fda85ab;p=fiveam.git Fix a few typos in the docs. (Reported by: Peter Gijsels ) --- diff --git a/src/classes.lisp b/src/classes.lisp index ada97da..d2dcbdd 100644 --- a/src/classes.lisp +++ b/src/classes.lisp @@ -25,7 +25,7 @@ ((tests :accessor tests :initform (make-hash-table :test 'eql) :documentation "The hash table mapping names to test objects in this suite. The values in this hash table - can be eitehr test-cases of other test-suites.")) + can be either test-cases or other test-suites.")) (:documentation "A test suite is a collection of tests or test suites. Test suites serve to organize tests into groups so that the diff --git a/src/fixture.lisp b/src/fixture.lisp index 32ca2dd..d5ff664 100644 --- a/src/fixture.lisp +++ b/src/fixture.lisp @@ -7,7 +7,7 @@ ;;;; When running tests we often need to setup some kind of context ;;;; (create dummy db connections, simulate an http request, ;;;; etc.). Fixtures provide a way to conviently hide this context -;;;; into a macro and allow the test to fuces on testing. +;;;; into a macro and allow the test to focus on testing. ;;;; NB: A FiveAM fixture is nothing more than a macro. Since the term ;;;; 'fixture' is so common in testing frameworks we've provided a diff --git a/src/run.lisp b/src/run.lisp index 274521e..481f33a 100644 --- a/src/run.lisp +++ b/src/run.lisp @@ -145,7 +145,7 @@ run.")) (return-from run-it (run-it))) (ignore () :report (lambda (stream) - (format stream "~@" test)) + (format stream "~@" test)) (abort-test (make-instance 'test-failure :test-case test :reason "Failure restart.")))) result-list)))) diff --git a/src/suite.lisp b/src/suite.lisp index 64223e0..0118e1a 100644 --- a/src/suite.lisp +++ b/src/suite.lisp @@ -6,7 +6,7 @@ ;;;; Test suites allow us to collect multiple tests into a single ;;;; object and run them all using asingle name. Test suites do not -;;;; affect teh way test are run northe way the results are handled, +;;;; affect the way test are run nor the way the results are handled, ;;;; they are simply a test organizing group. ;;;; Test suites can contain both tests and other test suites. Running