Author: dennisl
Date: Sat Nov 11 12:00:23 2006
New Revision: 473788

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

Modified:
    
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteMojo.java
    
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteRenderingMojo.java
    
maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt

Modified: 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteMojo.java?view=diff&rev=473788&r1=473787&r2=473788
==============================================================================
--- 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteMojo.java
 Sat Nov 11 12:00:23 2006
@@ -528,7 +528,7 @@
             }
             catch ( MalformedURLException e1 )
             {
-                getLog().warn( "Unable to load an URL for '" + to + "': " + 
e.getMessage() );
+                getLog().warn( "Unable to load a URL for '" + to + "': " + 
e.getMessage() );
             }
         }
 
@@ -544,7 +544,7 @@
             }
             catch ( MalformedURLException e1 )
             {
-                getLog().warn( "Unable to load an URL for '" + from + "': " + 
e.getMessage() );
+                getLog().warn( "Unable to load a URL for '" + from + "': " + 
e.getMessage() );
             }
         }
 
@@ -825,7 +825,7 @@
     }
 
     /**
-     * Interporlating several expressions in the site descriptor content. 
Actually, the expressions could be on
+     * Interpolating several expressions in the site descriptor content. 
Actually, the expressions could be on
      * the project, the environment variables and the specific properties like 
<code>encoding</code>.
      * <p/>
      * For instance:

Modified: 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteRenderingMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteRenderingMojo.java?view=diff&rev=473788&r1=473787&r2=473788
==============================================================================
--- 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteRenderingMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractSiteRenderingMojo.java
 Sat Nov 11 12:00:23 2006
@@ -213,7 +213,7 @@
             catch ( IOException e )
             {
                 throw new MojoExecutionException(
-                                                 "The site descriptor cannot 
interpolated properties: " + e.getMessage(), e );
+                                                 "The site descriptor cannot 
interpolate properties: " + e.getMessage(), e );
             }
 
             decoration = readDecorationModel( siteDescriptorContent );
@@ -520,7 +520,7 @@
             catch ( IOException e )
             {
                 throw new MojoExecutionException(
-                                                 "The site descriptor cannot 
interpolated properties: " + e.getMessage(), e );
+                                                 "The site descriptor cannot 
interpolate properties: " + e.getMessage(), e );
             }
 
             decorationModel = readDecorationModel( siteDescriptorContent );

Modified: 
maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt?view=diff&rev=473788&r1=473787&r2=473788
==============================================================================
--- 
maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt 
(original)
+++ 
maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt 
Sat Nov 11 12:00:23 2006
@@ -110,10 +110,10 @@
 
 * Expressions
 
-  The <<<site.xml>>> could contained some expressions, like 
<<<$\{project.name\}>>>. Each expression will be
-  evaluated when site rendering.
+  The <<<site.xml>>> can contain some expressions, like 
<<<$\{project.name\}>>>. Each expression will be
+  evaluated when the site is rendered.
 
-  Expressions could be:
+  Expressions can be:
 
   * $\{project.*\}, for instance <<<$\{project.organization.name\}>>> 
referenced in <<< <project/><organization/><name/> >>>
 


Reply via email to