Skip to content

Commit 7196e1d

Browse files
docs: correct documentation on transactions based on code review
1 parent 5e6650c commit 7196e1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs-parts/manipulation/3-Transactions_lang1.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Transactions are formed using the methods `startTransaction`, `cancelTransaction`, and `commitTransaction` of a connection object.
1+
Transactions are formed using the methods ``startTransaction``, ``cancelTransaction``, and ``commitTransaction`` of a connection object.
22
A connection object may obtained from any table object.
33

4-
For example, the following code inserts mating entries for the master table `Session` and its part table `SessionExperimenter`.
4+
For example, the following code inserts mating entries for the master table ``Session`` and its part table ``SessionExperimenter``.
55

66
.. code-block:: matlab
77
@@ -28,6 +28,6 @@ For example, the following code inserts mating entries for the master table `Ses
2828
end
2929
3030
31-
Here, to external observers, both inserts will take effect together only upon exiting from the `try-catch` block or will not have any effect at all.
31+
Here, to external observers, both inserts will take effect together only upon exiting from the ``try-catch`` block or will not have any effect at all.
3232
For example, if the second insert fails due to an error, the first insert will be rolled back.
3333

0 commit comments

Comments
 (0)