From 295d69aa4c64ef91a9037826092bbd6c1127b1db Mon Sep 17 00:00:00 2001 From: rustagir Date: Tue, 16 Jul 2024 11:12:59 -0400 Subject: [PATCH 1/3] DOCSP-41472: txn learning byte link --- docs/transactions.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/transactions.txt b/docs/transactions.txt index 89562c795..76c3a6d91 100644 --- a/docs/transactions.txt +++ b/docs/transactions.txt @@ -46,6 +46,12 @@ Learn how to perform transactions in the following sections of this guide: - :ref:`laravel-transaction-commit` - :ref:`laravel-transaction-rollback` +.. tip:: Transactions Learning Byte + + You practice using {+odm-short+} to perform transactions + in the `Laravel Transactions Learning Byte + `__. + .. tip:: To learn more about transactions in MongoDB, see :manual:`Transactions ` @@ -156,4 +162,3 @@ transaction is rolled back, and none of the models are updated: :emphasize-lines: 1,18,20 :start-after: begin rollback transaction :end-before: end rollback transaction - From 4e1dff373f745ecc6001352a7a78fc9f702a492e Mon Sep 17 00:00:00 2001 From: rustagir Date: Tue, 16 Jul 2024 11:39:27 -0400 Subject: [PATCH 2/3] wip --- docs/transactions.txt | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/transactions.txt b/docs/transactions.txt index 76c3a6d91..457c88d0d 100644 --- a/docs/transactions.txt +++ b/docs/transactions.txt @@ -39,7 +39,10 @@ Multi-document transactions are **ACID compliant** because MongoDB guarantees that the data in your transaction operations remains consistent, even if the driver encounters unexpected errors. -Learn how to perform transactions in the following sections of this guide: +To learn more about transactions in MongoDB, see :manual:`Transactions ` +in the {+server-docs-name+}. + +This guide contains the following sections: - :ref:`laravel-transaction-requirements` - :ref:`laravel-transaction-callback` @@ -52,11 +55,6 @@ Learn how to perform transactions in the following sections of this guide: in the `Laravel Transactions Learning Byte `__. -.. tip:: - - To learn more about transactions in MongoDB, see :manual:`Transactions ` - in the {+server-docs-name+}. - .. _laravel-transaction-requirements: Requirements and Limitations From 3664603b91e66ecd14ba88c1d8f42c061526b9ee Mon Sep 17 00:00:00 2001 From: rustagir Date: Tue, 16 Jul 2024 11:47:23 -0400 Subject: [PATCH 3/3] AS fix --- docs/transactions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/transactions.txt b/docs/transactions.txt index 457c88d0d..e85f06361 100644 --- a/docs/transactions.txt +++ b/docs/transactions.txt @@ -51,7 +51,7 @@ This guide contains the following sections: .. tip:: Transactions Learning Byte - You practice using {+odm-short+} to perform transactions + Practice using {+odm-short+} to perform transactions in the `Laravel Transactions Learning Byte `__.