You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/07/04 14:44:51 UTC

svn commit: r674032 - /maven/site/trunk/src/site/apt/developers/conventions/code.apt

Author: vsiveton
Date: Fri Jul  4 05:44:50 2008
New Revision: 674032

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

Modified:
    maven/site/trunk/src/site/apt/developers/conventions/code.apt

Modified: maven/site/trunk/src/site/apt/developers/conventions/code.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/developers/conventions/code.apt?rev=674032&r1=674031&r2=674032&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/developers/conventions/code.apt (original)
+++ maven/site/trunk/src/site/apt/developers/conventions/code.apt Fri Jul  4 05:44:50 2008
@@ -64,10 +64,10 @@
 
  * <<Blocks>>: Always enclose with a new line brace.
 
- * <<Readingness>>: Specify code grouping members, if needed. For instance in a MOJO, you could have:
+ * <<Readingness>>: Specify code grouping members, if needed. For instance in a Mojo class, you could have:
 
 +-----+
-public class MyPlugin
+public class MyMojo
 {
     // ----------------------------------------------------------------------
     // Mojo components
@@ -97,7 +97,7 @@
     ...
 
     // ----------------------------------------------------------------------
-    // Plugin options
+    // Mojo options
     // ----------------------------------------------------------------------
     ...
 
@@ -115,6 +115,11 @@
     }
 
     // ----------------------------------------------------------------------
+    // Protected methods
+    // ----------------------------------------------------------------------
+    ...
+
+    // ----------------------------------------------------------------------
     // Private methods
     // ----------------------------------------------------------------------
     ...