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 2020/05/04 09:26:59 UTC

[jena-site] branch master updated: Minor editorial corrections

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/master by this push:
     new f969cf6  Minor editorial corrections
f969cf6 is described below

commit f969cf63ebce73b714ed7dca66a543a844ed04bf
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Mon May 4 10:26:41 2020 +0100

    Minor editorial corrections
---
 source/documentation/txn/transactions_api.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/documentation/txn/transactions_api.md b/source/documentation/txn/transactions_api.md
index f2d495a..8e692f1 100644
--- a/source/documentation/txn/transactions_api.md
+++ b/source/documentation/txn/transactions_api.md
@@ -108,13 +108,13 @@ dataset.
 
 ## Transaction Types, Modes and Promotion. {#types-modes-promotion}
 
-Transaction have type (enum `TxnType`) and a mode (enum `ReadWrite`).
+Transaction have a type (enum `TxnType`) and a mode (enum `ReadWrite`).
 `TxnType.READ` and `TxnType.Write` start the transaction in
-that mode and it is fixed from the transaction's lifetime. A `READ`
+that mode and the mode is fixed for the transaction's lifetime. A `READ`
 transaction can never update the data of the transactional object it is
 acting on.
 
-Transactions can have type `TxnType.READ_PROMOTE` and
+Transactions can have type `TxnType.READ_PROMOTE` or
 `TxnType.READ_COMMITTED_PROMOTE`. These start in mode `READ` but can
 become mode `WRITE`, either implicitly by attempting an update, or
 explicitly by calling `promote`.