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/01/04 20:46:23 UTC

[09/14] jena git commit: Fix javadoc

Fix javadoc


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

Branch: refs/heads/master
Commit: d3ecb74fe63f3c44ecb00c60955cde6334a6d54d
Parents: edab900
Author: Andy Seaborne <an...@apache.org>
Authored: Tue Jan 2 16:00:18 2018 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Tue Jan 2 16:00:18 2018 +0000

----------------------------------------------------------------------
 jena-arq/src/main/java/org/apache/jena/query/TxnType.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/d3ecb74f/jena-arq/src/main/java/org/apache/jena/query/TxnType.java
----------------------------------------------------------------------
diff --git a/jena-arq/src/main/java/org/apache/jena/query/TxnType.java b/jena-arq/src/main/java/org/apache/jena/query/TxnType.java
index 39d5dc8..a315a13 100644
--- a/jena-arq/src/main/java/org/apache/jena/query/TxnType.java
+++ b/jena-arq/src/main/java/org/apache/jena/query/TxnType.java
@@ -25,7 +25,7 @@ import org.apache.jena.sparql.JenaTransactionException;
 public enum TxnType {
     /** Transaction mode:
      * <ul>
-     * <li>{@code WRITE}: this gaurantees a WRITE will complete if {@code commit()} is
+     * <li>{@code WRITE}: this guarantees a WRITE will complete if {@code commit()} is
      * called. The same as {@code begin(ReadWrite.WRITE)}.
      * 
      * <li>{@code READ}: the transaction can not promote to WRITE,ensuring read-only
@@ -42,7 +42,7 @@ public enum TxnType {
      * Read committed: at the point transaction attempts promotion from "read" to
      * "write", the sytem checks if the datset has chnage since the trsnaction started
      * (called {@code begin}). If {@code READ_PROMOTE}, the dataset must not have
-     * changed; if {@code READ_COMMITTED_PROMOTE} anyh intermediate changes are
+     * changed; if {@code READ_COMMITTED_PROMOTE} any intermediate changes are
      * visible but the application can not assume any data it has read in the
      * transaction is the same as it was at the point the transaction started.
      */