You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/26 22:58:09 UTC

svn commit: r1342964 - /maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm

Author: hboutemy
Date: Sat May 26 20:58:09 2012
New Revision: 1342964

URL: http://svn.apache.org/viewvc?rev=1342964&view=rev
Log:
fixed typo

Modified:
    maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm

Modified: maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm?rev=1342964&r1=1342963&r2=1342964&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm Sat May 26 20:58:09 2012
@@ -182,7 +182,7 @@ public class HelpMojo
                         Xpp3Dom fieldConfigurationElement = configurationElement.getChild( name.getValue() );
                         if ( fieldConfigurationElement != null && fieldConfigurationElement.getValue() != null )
                         {
-                            append( sb, name.getValue() + "(Default: " + configurationElement.getChild(
+                            append( sb, name.getValue() + " (default: " + configurationElement.getChild(
                                 name.getValue() ).getAttribute( "default-value" ) + ")", 2 );
                         }