You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2014/10/11 21:53:51 UTC

svn commit: r1631105 - /maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt

Author: khmarbaise
Date: Sat Oct 11 19:53:51 2014
New Revision: 1631105

URL: http://svn.apache.org/r1631105
Log:
- Fixed typo in enumeration type.

Modified:
    maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt

Modified: maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt?rev=1631105&r1=1631104&r2=1631105&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt (original)
+++ maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt Sat Oct 11 19:53:51 2014
@@ -517,7 +517,7 @@ mvn archetype:generate \
 +-----+
     public enum Color {
       green,
-      rot,
+      red,
       blue
     }
 
@@ -534,7 +534,7 @@ mvn archetype:generate \
 +-----+
     public enum Color {
       green,
-      rot,
+      red,
       blue
     }