You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2018/09/21 13:24:17 UTC

jena git commit: Javadoc edits

Repository: jena
Updated Branches:
  refs/heads/master 322e1a5d6 -> d6be56fd5


Javadoc edits

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/d6be56fd
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/d6be56fd
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/d6be56fd

Branch: refs/heads/master
Commit: d6be56fd5565f81eb632c66518dcc6cc4fade7fd
Parents: 322e1a5
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Sep 21 14:24:06 2018 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Sep 21 14:24:06 2018 +0100

----------------------------------------------------------------------
 .../java/org/apache/jena/tdb2/loader/LoaderFactory.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/d6be56fd/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/loader/LoaderFactory.java
----------------------------------------------------------------------
diff --git a/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/loader/LoaderFactory.java b/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/loader/LoaderFactory.java
index d06e3d4..83f13c9 100644
--- a/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/loader/LoaderFactory.java
+++ b/jena-db/jena-tdb2/src/main/java/org/apache/jena/tdb2/loader/LoaderFactory.java
@@ -45,7 +45,7 @@ public class LoaderFactory {
      * A simple loader that streams data into a dataset as a plain "read" operation.
      * Data is read inside a transaction.
      * <p>
-     * Supply a {@link MonitorOutput} for the desirabled progress and summary output messages
+     * Supply a {@link MonitorOutput} for the desirable progress and summary output messages
      * or {@code null} for no output. 
      */
     public static DataLoader basicLoader(DatasetGraph dsg, MonitorOutput output) {
@@ -75,14 +75,14 @@ public class LoaderFactory {
 
     /** A loader that takes all the data into the primary indexes in one phase, then 
      * calculates/updates secondary indexes. This can make more efficient use of memory
-     * so that one datastructure is being owkred on at a time. 
+     * so that one datastructure is being worked on at a time. 
      * <p>
      * This loader uses one thread.
      * <p>
      * The dataset can not be used for other operations - the code will block other transactions
      * as necessary and release then when loading has finished.
      * <p> 
-     * Supply a {@link MonitorOutput} for the desirabled progress and summary output messages
+     * Supply a {@link MonitorOutput} for the desirable progress and summary output messages
      * or {@code null} for no output. 
      */
     public static DataLoader sequentialLoader(DatasetGraph dsg, MonitorOutput output) {
@@ -122,7 +122,7 @@ public class LoaderFactory {
      * * The dataset can not be used for other operations - the code will block other transactions
      * as necessary and release then when loading has finished.
      * <p>
-     * Supply a {@link MonitorOutput} for the desirabled progress and summary output messages
+     * Supply a {@link MonitorOutput} for the desirable progress and summary output messages
      * or {@code null} for no output.
      */
     
@@ -163,7 +163,7 @@ public class LoaderFactory {
      * * The dataset can not be used for other operations - the code will block other transactions
      * as necessary and release then when loading has finished.
      * <p>
-     * Supply a {@link MonitorOutput} for the desirabled progress and summary output messages
+     * Supply a {@link MonitorOutput} for the desirable progress and summary output messages
      * or {@code null} for no output.
      */
     public static DataLoader parallelLoader(DatasetGraph dsg, MonitorOutput output) {