Fix typos in java doc.
authorBruno Sinou <bsinou@argeo.org>
Tue, 4 Feb 2014 17:17:47 +0000 (17:17 +0000)
committerBruno Sinou <bsinou@argeo.org>
Tue, 4 Feb 2014 17:17:47 +0000 (17:17 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@6806 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/NodeIndexer.java

index 1bf363492fe82741927aff9527850588576db39a..3f882bd8b6fbf1bfc11f720ebc659c60fb837c0f 100644 (file)
@@ -30,15 +30,15 @@ public interface NodeIndexer {
         * information contained in the path / file name: file extension, base path,
         * etc. If the node needs to be loaded, the recommended approach is to
         * return <code>true</code> here and wait for index to be called, possibly
-        * returning without processing if the node should node be indexed. While
-        * not stricly a requirements, this avoids to open sessions in the indexer,
-        * centrlaizing such tasks in the caller.
+        * returning without processing if the node should not be indexed. While
+        * not strictly a requirement, this avoids to open sessions in the indexer,
+        * centralizing such tasks in the caller.
         */
        public Boolean support(String path);
 
        /**
         * Adds the metadata. This is the responsibility of the caller to save the
-        * udnerlying session.
+        * underlying session.
         */
        public void index(Node node);
 }