You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by md...@apache.org on 2013/04/24 12:39:07 UTC

svn commit: r1471359 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java

Author: mduerig
Date: Wed Apr 24 10:39:07 2013
New Revision: 1471359

URL: http://svn.apache.org/r1471359
Log:
Use @code instead of <code>

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java?rev=1471359&r1=1471358&r2=1471359&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/p2/strategy/ContentMirrorStoreStrategy.java Wed Apr 24 10:39:07 2013
@@ -45,11 +45,11 @@ import com.google.common.collect.Sets;
  * This should minimize the chance that concurrent updates overlap on the same
  * content node.<br>
  * <br>
- * For example for a node that is under <code>/test/node</code>, the index
- * structure will be <code>/oak:index/index/test/node</code>:
- * 
+ * For example for a node that is under {@code /test/node}, the index
+ * structure will be {@code /oak:index/index/test/node}:
+ *
  * <pre>
- * <code>
+ * {@code
  * /
  *   test
  *     node
@@ -57,9 +57,9 @@ import com.google.common.collect.Sets;
  *     index
  *       test
  *         node
- * </code>
+ * }
  * </pre>
- * 
+ *
  */
 public class ContentMirrorStoreStrategy implements IndexStoreStrategy {