Skip to content

Commit ec5ad7e

Browse files
Fix typo: tnx -> txn (#4063)
1 parent eda7efa commit ec5ad7e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/concepts/atomic/txn_mode_default.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Transaction mode: default
44
===========================
55

66
By default, Tarantool does not allow :ref:`"yielding" <app-yields>` inside a :ref:`memtx <engines-chapter>`
7-
transaction and the :ref:`transaction manager <txn_mode_mvcc-tnx-manager>` is disabled. This allows fast
7+
transaction and the :ref:`transaction manager <txn_mode_mvcc-txn-manager>` is disabled. This allows fast
88
atomic transactions without conflicts, but brings some limitations:
99

1010
* You cannot use :ref:`interactive transactions <txn_mode_interactive_transaction>`.

doc/concepts/atomic/txn_mode_mvcc.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ but has a different implementation.
1818

1919
Currently, you cannot use several different storage engines within one transaction.
2020

21-
.. _txn_mode_mvcc-tnx-manager:
21+
.. _txn_mode_mvcc-txn-manager:
2222

2323
Transaction manager
2424
-------------------
@@ -97,7 +97,7 @@ You can set an isolation level for a specific transaction in its ``box.begin()``
9797

9898
.. code-block:: lua
9999
100-
box.begin({ tnx_isolation = 'best-effort' })
100+
box.begin({ txn_isolation = 'best-effort' })
101101
102102
In this case, you can also use the ``default`` option. It sets the transaction's isolation level
103103
to the one set in ``box.cfg``.

doc/concepts/data_model/indexes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ RTREE index can accept two types of ``distance`` functions: ``euclid`` and ``man
260260
.. warning::
261261

262262
Currently, the :ref:`isolation level <transaction_model_levels>` of RTREE indexes
263-
in :ref:`MVCC transaction mode <txn_mode_mvcc-tnx-manager>` is *read-committed* (not *serializable*, as stated).
263+
in :ref:`MVCC transaction mode <txn_mode_mvcc-txn-manager>` is *read-committed* (not *serializable*, as stated).
264264
If a transaction uses these indexes, it can read committed or confirmed data (depending on the isolation level).
265265
However, the indexes are subject to different anomalies that can make them unserializable.
266266

@@ -443,7 +443,7 @@ attributes.
443443
.. warning::
444444

445445
Currently, the :ref:`isolation level <transaction_model_levels>` of BITSET indexes
446-
in :ref:`MVCC transaction mode <txn_mode_mvcc-tnx-manager>` is *read-committed* (not *serializable*, as stated).
446+
in :ref:`MVCC transaction mode <txn_mode_mvcc-txn-manager>` is *read-committed* (not *serializable*, as stated).
447447
If a transaction uses these indexes, it can read committed or confirmed data (depending on the isolation level).
448448
However, the indexes are subject to different anomalies that can make them unserializable.
449449

0 commit comments

Comments
 (0)