From cb6466d2bbd78494a8a832481d9777f587e53123 Mon Sep 17 00:00:00 2001 From: Caitlin Davey Date: Fri, 27 Sep 2024 13:47:09 -0400 Subject: [PATCH] Docsp 42960 nested components (#387) * DOCSP-42960: Removing nested components in go pages * DOCSP-42960: Removing nested components in go pages * DOCSP-42960: Removing nested components spacing updates * DOCSP-42960: Removing nested components fixing rst error --- .../crud/read-operations/retrieve.txt | 7 ++----- source/fundamentals/run-command.txt | 8 ++------ source/fundamentals/transactions.txt | 20 ++++++++----------- 3 files changed, 12 insertions(+), 23 deletions(-) diff --git a/source/fundamentals/crud/read-operations/retrieve.txt b/source/fundamentals/crud/read-operations/retrieve.txt index d18b3832..f0fe9e30 100644 --- a/source/fundamentals/crud/read-operations/retrieve.txt +++ b/source/fundamentals/crud/read-operations/retrieve.txt @@ -111,11 +111,8 @@ following methods: * - ``SetLimit()`` - | The maximum number of documents to return. | Default: ``0`` - - .. note:: - - This option is not available for ``FindOneOptions``. The - ``FindOne()`` method internally uses ``SetLimit(-1)``. + | This option is not available for ``FindOneOptions``. The + ``FindOne()`` method internally uses ``SetLimit(-1)``. * - ``SetProjection()`` - | The fields to include in the returned documents. diff --git a/source/fundamentals/run-command.txt b/source/fundamentals/run-command.txt index 00f8056c..89f9b055 100644 --- a/source/fundamentals/run-command.txt +++ b/source/fundamentals/run-command.txt @@ -90,12 +90,8 @@ with the following fields: * - ``operationTime`` - Indicates the logical time of the operation. MongoDB uses the - logical time to order operations. - - .. seealso:: - - To learn more about logical time, see our :website:`blog post about - the Global Logical Clock `. + logical time to order operations. To learn more about logical time, see our :website:`blog post about + the Global Logical Clock `. * - ``$clusterTime`` - Provides a document that returns the signed cluster time. Cluster time is a diff --git a/source/fundamentals/transactions.txt b/source/fundamentals/transactions.txt index 38d79c0d..48709e20 100644 --- a/source/fundamentals/transactions.txt +++ b/source/fundamentals/transactions.txt @@ -94,18 +94,14 @@ these methods: error if there is no active transaction for the session or if the transaction was ended. To learn more about this method, see the :manual:`commitTransaction() page - ` in the Server manual. - - .. note:: Retrying a Transaction - - The ``CommitTransaction()`` method is an idempotent function, which - means that you can attempt to commit a transaction multiple times - without changing data after the first successful commit. - - A transaction can succeed but return an error with the - ``UnknownTransactionCommitResult`` label. If you rerun the - ``CommitTransaction()`` method after receiving this error, - your data is not changed by the repeat attempts. + ` in the Server manual. + | + | The ``CommitTransaction()`` method is an idempotent function, which + means that you can attempt to commit a transaction multiple times without changing data after the first successful commit. + A transaction can succeed but return an error with the + ``UnknownTransactionCommitResult`` label. If you rerun the + ``CommitTransaction()`` method after receiving this error, + your data is not changed by the repeat attempts. | | **Parameter**: ``Context``