You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/01/19 22:46:51 UTC

svn commit: r1435719 - /isis/site/trunk/content/getting-started/screenshots.md

Author: danhaywood
Date: Sat Jan 19 21:46:51 2013
New Revision: 1435719

URL: http://svn.apache.org/viewvc?rev=1435719&view=rev
Log:
isis site - more on screenshots

Modified:
    isis/site/trunk/content/getting-started/screenshots.md

Modified: isis/site/trunk/content/getting-started/screenshots.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/getting-started/screenshots.md?rev=1435719&r1=1435718&r2=1435719&view=diff
==============================================================================
--- isis/site/trunk/content/getting-started/screenshots.md (original)
+++ isis/site/trunk/content/getting-started/screenshots.md Sat Jan 19 21:46:51 2013
@@ -202,7 +202,8 @@ public class ToDoItem {
     ...
     public ToDoItem completed() { ... }
     public String disableCompleted() {
-        return complete ? "Already completed" : null;
+        return complete ? 
+            "Already completed" : null;
     }
 }
 </pre></td>
@@ -220,7 +221,7 @@ public class ToDoItem {
         return this;
     }
     ...
-    // }}
+}}
 </pre><i>There might also be validation logic:</i><pre>
 public class ToDoItem {
     ...