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 2016/07/12 20:06:25 UTC

svn commit: r1752340 - in /jena/site/trunk/content/documentation/txn: transactions.md txn.md

Author: andy
Date: Tue Jul 12 20:06:25 2016
New Revision: 1752340

URL: http://svn.apache.org/viewvc?rev=1752340&view=rev
Log:
Markdown fixup

Modified:
    jena/site/trunk/content/documentation/txn/transactions.md
    jena/site/trunk/content/documentation/txn/txn.md

Modified: jena/site/trunk/content/documentation/txn/transactions.md
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/txn/transactions.md?rev=1752340&r1=1752339&r2=1752340&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/txn/transactions.md (original)
+++ jena/site/trunk/content/documentation/txn/transactions.md Tue Jul 12 20:06:25 2016
@@ -2,9 +2,10 @@ Title: Jena Transactions
 
 This page gives an overview transaction in Jena.
 
-There are two2 API for transactions: the [basic transaction interface](transactions_api.html)
-styled after the conventional `begin`-`commit` and a [higher level `Txn` API](#txn.html)
-that builds on the basic API using Java8 features.
+There are two API for transactions: the [basic transaction
+interface](transactions_api.html) styled after the conventional
+`begin`-`commit` and a [higher level `Txn` API](#txn.html) that builds
+on the basic API using Java8 features.
 
 ## APIs
 
@@ -41,11 +42,11 @@ There is a default implementation, based
 that can be used with any mixed set of components. Certain storage sub-systems provide
 better concurrency with MR+SW (multiple-read and single writer).
 
-| Dataset | Facilties | Creation |
+| Dataset   | Facilties | Creation |
 |-----------|-----------|----------|
-| `TxnMem` | MR+SW | `DatasetFactory.createTxnMem` |
-| TDB | MR+SW, persistent | `TDBFactory.create` |
-| General | MRSW | `DatasetFactory.create` |
+| TxnMem    | MR+SW     | `DatasetFactory.createTxnMem` |
+| TDB       | MR+SW, persistent | `TDBFactory.create` |
+| General   | MRSW      | `DatasetFactory.create` |
 
 The general dataset can have have any graphs added to it (e.g. inference graphs).
 

Modified: jena/site/trunk/content/documentation/txn/txn.md
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/txn/txn.md?rev=1752340&r1=1752339&r2=1752340&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/txn/txn.md (original)
+++ jena/site/trunk/content/documentation/txn/txn.md Tue Jul 12 20:06:25 2016
@@ -5,10 +5,11 @@ library over the core functionality - ap
 to use transactions.
 
 Features:
-* Java8 idioms
-* Application exceptions cause transaction aborts.
-* "Transaction continuation" - use any existing active trsnaction.
-* Autocommit - ensure actions are inside a transaction even if none is active.
+
+-   Java8 idioms
+-   Application exceptions cause transaction aborts.
+-   "Transaction continuation" - use any existing active trsnaction.
+-   Autocommit - ensure actions are inside a transaction even if none is active.
 
 ## Transactions