From: Bruno Sinou Date: Tue, 4 Feb 2014 17:17:47 +0000 (+0000) Subject: Fix typos in java doc. X-Git-Tag: argeo-slc-2.1.7~257 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=56ca63f4e46795e2e9da96b782244d1a879f7c78;p=gpl%2Fargeo-slc.git Fix typos in java doc. git-svn-id: https://svn.argeo.org/slc/trunk@6806 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/NodeIndexer.java b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/NodeIndexer.java index 1bf363492..3f882bd8b 100644 --- a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/NodeIndexer.java +++ b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/NodeIndexer.java @@ -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 true 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); }