From 325484bad5d2b1e7853dedc9389de1192fc250e2 Mon Sep 17 00:00:00 2001 From: waywardmonkeys Date: Thu, 1 Dec 2011 07:30:19 -0800 Subject: [PATCH] Fix spelling error. --- Detailed-Topics/Testing.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Detailed-Topics/Testing.md b/Detailed-Topics/Testing.md index e777e20..3f307fb 100644 --- a/Detailed-Topics/Testing.md +++ b/Detailed-Topics/Testing.md @@ -227,7 +227,7 @@ object B extends Build } ``` -Instead of using the builtin configuration, we defined a new one: +Instead of using the built-in configuration, we defined a new one: ```scala lazy val FunTest = config("fun") extend(Test) @@ -307,7 +307,7 @@ To run tests for the added configuration (here, `"fun"`), prefix it with the con ### Application to parallel execution One use for this shared-source approach is to separate tests that can run in parallel from those that must execute serially. -Appy the procedure described in this section for an additional configuration. +Apply the procedure described in this section for an additional configuration. Let's call the configuration `serial`: ```scala @@ -333,11 +333,11 @@ libraryDependencies += "com.novocode" % "junit-interface" % "0.7" % "test->defau # Extensions -This page describes adding support for additional testing libraries and defining additional test reporters. You do this by implementing `sbt` interfaces (described below). If you are the author of the testing framework, you can depend on the test inferface as a provided dependency. Alternatively, anyone can provide support for a test framework by implementing the interfaces in a separate project and packaging the project as an sbt [[Plugin|Plugins]]. +This page describes adding support for additional testing libraries and defining additional test reporters. You do this by implementing `sbt` interfaces (described below). If you are the author of the testing framework, you can depend on the test interface as a provided dependency. Alternatively, anyone can provide support for a test framework by implementing the interfaces in a separate project and packaging the project as an sbt [[Plugin|Plugins]]. ## Custom Test Framework -`sbt` contains built-in support for the three main Scala testing libraries (specs 1 and 2, ScalaTest, and ScalaCheck). To add support for a differrent framework, implement the [uniform test interface]. +`sbt` contains built-in support for the three main Scala testing libraries (specs 1 and 2, ScalaTest, and ScalaCheck). To add support for a different framework, implement the [uniform test interface]. ## Custom Test Reporters