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/02/08 16:11:15 UTC

svn commit: r1444052 - /isis/site/trunk/content/core/publishing-service.md

Author: danhaywood
Date: Fri Feb  8 15:11:15 2013
New Revision: 1444052

URL: http://svn.apache.org/r1444052
Log:
isis site - adding docs on PublishingService

Modified:
    isis/site/trunk/content/core/publishing-service.md

Modified: isis/site/trunk/content/core/publishing-service.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/core/publishing-service.md?rev=1444052&r1=1444051&r2=1444052&view=diff
==============================================================================
--- isis/site/trunk/content/core/publishing-service.md (original)
+++ isis/site/trunk/content/core/publishing-service.md Fri Feb  8 15:11:15 2013
@@ -19,12 +19,12 @@ Over and above this, the service does pr
 To indicate that an action should be published, use the `PublishedAction` annotation.  For example:
 
 <pre>
-public class ToDoItem {
+  public class ToDoItem {
     ...
     @PublishedAction
     public void completed() { ... }
     ...
-}}
+  }
 </pre>
 
 Similarly, to indicate that any changes to an object should be published, use the `PublishedObject` annotation: