Skip to content

Commit 71cc650

Browse files
committed
Fixes
1 parent 3d5ed89 commit 71cc650

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

source/connect/connection-options.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,22 +264,22 @@ Read and Write Operations
264264

265265
* - **retryReads**
266266
- | Specifies whether the client should retry supported read operations. For more
267-
information, see :manual:`</core/retryable-reads/>` in the {+mdb-server+}
267+
information, see :manual:`Retryable Reads </core/retryable-reads/>` in the {+mdb-server+}
268268
manual.
269269
|
270270
| **Data Type**: {+bool-data-type+}
271271
| **Default**: ``True``
272272
| **MongoClient Example**: ``retryReads=False``
273-
| **Connection URI Example**: ``retryReads=False``
273+
| **Connection URI Example**: ``retryReads=false``
274274

275275
* - **retryWrites**
276276
- | Specifies whether the client should retry supported write operations. For more
277-
information, see :manual:`</core/retryable-writes/>` in the {+mdb-server+}
277+
information, see :manual:`Retryable Writes </core/retryable-writes/>` in the {+mdb-server+}
278278
manual.
279279
|
280280
| **Data Type**: {+bool-data-type+}
281281
| **Default**: ``True``
282282
| **MongoClient Example**: ``retryWrites=False``
283-
| **Connection URI Example**: ``retryWrites=False``
283+
| **Connection URI Example**: ``retryWrites=false``
284284

285285
For more information about the connection options in this section, see :ref:`pymongo-databases-collections`.

source/databases-collections.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ Retryable Reads and Writes
289289
{+driver-short+} automatically retries certain read and write operations a single time
290290
if they fail due to a network error or a server error.
291291

292-
You can explicitly disable retryable reads or writes by setting the ``retryReads`` or
292+
You can explicitly disable retryable reads or retryable writes by setting the ``retryReads`` or
293293
``retryWrites`` option to ``False`` in the ``MongoClient()`` constructor. The following
294294
example disables retryable reads and writes for a client:
295295

@@ -298,9 +298,9 @@ example disables retryable reads and writes for a client:
298298
client = MongoClient("<connection string>",
299299
retryReads=False, retryWrites=False)
300300

301-
To learn more about supported retryable read operations, see :manual:`</core/retryable-reads/>`
301+
To learn more about supported retryable read operations, see :manual:`Retryable Reads </core/retryable-reads/>`
302302
in the {+mdb-server+} manual. To learn more about supported retryable write
303-
operations, see :manual:`</core/retryable-writes/>` in the {+mdb-server+} manual.
303+
operations, see :manual:`Retryable Writes </core/retryable-writes/>` in the {+mdb-server+} manual.
304304

305305
Troubleshooting
306306
---------------

0 commit comments

Comments
 (0)