diff --git a/source/fundamentals/crud/read-operations/retrieve.txt b/source/fundamentals/crud/read-operations/retrieve.txt index d18b3832..56f8c94c 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..380f7deb 100644 --- a/source/fundamentals/run-command.txt +++ b/source/fundamentals/run-command.txt @@ -92,10 +92,8 @@ with the following fields: - 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 `. + 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..253ad006 100644 --- a/source/fundamentals/transactions.txt +++ b/source/fundamentals/transactions.txt @@ -95,17 +95,14 @@ these methods: 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. + | + 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``