Author: dennisl
Date: Fri Jul 28 11:05:10 2006
New Revision: 426625

URL: http://svn.apache.org/viewvc?rev=426625&view=rev
Log:
o Fix typos in documentation.

Modified:
    
maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
    
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
    maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt
    maven/plugins/trunk/maven-surefire-plugin/src/site/apt/index.apt
    maven/plugins/trunk/maven-surefire-plugin/src/site/fml/faq.fml

Modified: 
maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java?rev=426625&r1=426624&r2=426625&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
 (original)
+++ 
maven/plugins/trunk/maven-surefire-plugin/src/main/java/org/apache/maven/plugin/surefire/SurefirePlugin.java
 Fri Jul 28 11:05:10 2006
@@ -131,7 +131,7 @@
     /**
      * Specify this parameter if you want to use the test pattern matching 
notation, Ant pattern matching, to select tests to run.
      * The Ant pattern will be used to create an include pattern formatted 
like <code>**&#47;${test}.java</code>
-     * When used, the <code>includes</code> and <code>excludes</code> patterns 
parameters are ignored
+     * When used, the <code>includes</code> and <code>excludes</code> patterns 
parameters are ignored.
      *
      * @parameter expression="${test}"
      */
@@ -139,7 +139,7 @@
 
     /**
      * List of patterns (separated by commas) used to specify the tests that 
should be included in testing.
-     * When not specified and whent the <code>test</code> parameter is not 
specified, the default includes will be
+     * When not specified and when the <code>test</code> parameter is not 
specified, the default includes will be
      * <code>**&#47;Test*.java   **&#47;*Test.java   
**&#47;*TestCase.java</code>
      *
      * @parameter
@@ -148,7 +148,7 @@
 
     /**
      * List of patterns (separated by commas) used to specify the tests that 
should be excluded in testing.
-     * When not specified and whent the <code>test</code> parameter is not 
specified, the default excludes will be
+     * When not specified and when the <code>test</code> parameter is not 
specified, the default excludes will be
      * <code>**&#47;Abstract*Test.java  **&#47;Abstract*TestCase.java 
**&#47;*$*</code>
      *
      * @parameter
@@ -215,7 +215,7 @@
 
     /**
      * When forking, set this to true to redirect the unit test standard 
output to a file 
-     * (found in reportsDirectory/testName-output.txt)
+     * (found in reportsDirectory/testName-output.txt).
      * 
      * @parameter expression="${maven.test.redirectTestOutputToFile}"
      * @default-value="false"

Modified: 
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt?rev=426625&r1=426624&r2=426625&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
 (original)
+++ 
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/inclusion-exclusion.apt
 Fri Jul 28 11:05:10 2006
@@ -25,7 +25,7 @@
    []
 
   If the test classes does not go with the naming convention, then configure
-  surefire plugin and specify the test you want to include.
+  surefire plugin and specify the tests you want to include.
 
 +---+
 <project>

Modified: 
maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt?rev=426625&r1=426624&r2=426625&view=diff
==============================================================================
--- maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt 
(original)
+++ maven/plugins/trunk/maven-surefire-plugin/src/site/apt/examples/testng.apt 
Fri Jul 28 11:05:10 2006
@@ -35,7 +35,7 @@
 
 * Using Suite XML Files
 
-  Another alternative is to use test NG suite XML files. This allows flexbile 
configuration of the tests to be run.
+  Another alternative is to use test NG suite XML files. This allows flexible 
configuration of the tests to be run.
   These files are created as normal, and then added to the Surefire plugin 
configuration:
 
 +---+

Modified: maven/plugins/trunk/maven-surefire-plugin/src/site/apt/index.apt
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/site/apt/index.apt?rev=426625&r1=426624&r2=426625&view=diff
==============================================================================
--- maven/plugins/trunk/maven-surefire-plugin/src/site/apt/index.apt (original)
+++ maven/plugins/trunk/maven-surefire-plugin/src/site/apt/index.apt Fri Jul 28 
11:05:10 2006
@@ -9,19 +9,19 @@
 Maven Surefire Plugin
 
   The surefire plugin is used during the <<<test>>> phase of the build
-  lifecycle to execute the unit tests of an application. It generate reports
+  lifecycle to execute the unit tests of an application. It generates reports
   in 2 different file formats:
 
-  * Plain text file (*.txt)
+  * Plain text files (*.txt)
 
-  * Xml file (*.xml)
+  * Xml files (*.xml)
 
   []
 
   By default, these files are generated at 
<<<${basedir}/target/surefire-reports>>>.
 
   For an html format of the report, please see the
-  
{{{http://maven.apache.org/plugins/maven-surefire-report-plugin}maven-surefire-report-plugin}}.
+  
{{{http://maven.apache.org/plugins/maven-surefire-report-plugin/}maven-surefire-report-plugin}}.
 
 * Goals Overview
 

Modified: maven/plugins/trunk/maven-surefire-plugin/src/site/fml/faq.fml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-surefire-plugin/src/site/fml/faq.fml?rev=426625&r1=426624&r2=426625&view=diff
==============================================================================
--- maven/plugins/trunk/maven-surefire-plugin/src/site/fml/faq.fml (original)
+++ maven/plugins/trunk/maven-surefire-plugin/src/site/fml/faq.fml Fri Jul 28 
11:05:10 2006
@@ -2,7 +2,7 @@
 <faqs id="FAQ" title="Frequently Asked Questions">
  <part id="General">
    <faq id="compile-error-reports">
-     <question>Does surefire plugin supports JUnit 4.0?</question>
+     <question>Does surefire plugin support JUnit 4.0?</question>
      <answer>
        <p>
             No. But an issue is already filed. Please see


Reply via email to