You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by no...@apache.org on 2011/09/10 01:26:46 UTC

svn commit: r1167395 - /aries/site/trunk/content/modules/blueprint.mdtext

Author: not
Date: Fri Sep  9 23:26:45 2011
New Revision: 1167395

URL: http://svn.apache.org/viewvc?rev=1167395&view=rev
Log:
take 2 on syntax highlighting

Modified:
    aries/site/trunk/content/modules/blueprint.mdtext

Modified: aries/site/trunk/content/modules/blueprint.mdtext
URL: http://svn.apache.org/viewvc/aries/site/trunk/content/modules/blueprint.mdtext?rev=1167395&r1=1167394&r2=1167395&view=diff
==============================================================================
--- aries/site/trunk/content/modules/blueprint.mdtext (original)
+++ aries/site/trunk/content/modules/blueprint.mdtext Fri Sep  9 23:26:45 2011
@@ -106,13 +106,13 @@ example, the *class* attribute specifies
 instantiate. The Blueprint Container will create the *Account* object by
 passing *1* as the argument to the constructor. 
 
-   :::java
-   public class Account {      
-       public Account(long number) {
-	  ...
+       :::java
+       public class Account {      
+           public Account(long number) {
+	          ...
+           }
+           ...
        }
-       ...
-   }