@@ -72,21 +72,21 @@ parameters of the connection URI to specify the behavior of the client.
7272
7373 * - **ssl**
7474 - boolean
75- - Specifies that all communication with MongoDB instances should
75+ - Specifies that all communication with MongoDB instances must
7676 use TLS/SSL. Superseded by the **tls** option.
7777
7878 | **Default**: ``false``
7979
8080 * - **tls**
8181 - boolean
82- - Specifies that all communication with MongoDB instances should
82+ - Specifies that all communication with MongoDB instances must
8383 use TLS. Supersedes the **ssl** option.
8484
8585 | **Default**: ``false``
8686
8787 * - **tlsInsecure**
8888 - boolean
89- - Specifies that the driver should allow invalid hostnames for TLS
89+ - Specifies that the driver must allow invalid hostnames for TLS
9090 connections. Has the same effect as setting
9191 **tlsAllowInvalidHostnames** to ``true``. To configure TLS security
9292 constraints in other ways, use a
@@ -96,7 +96,7 @@ parameters of the connection URI to specify the behavior of the client.
9696
9797 * - **tlsAllowInvalidHostnames**
9898 - boolean
99- - Specifies that the driver should allow invalid hostnames in the
99+ - Specifies that the driver must allow invalid hostnames in the
100100 certificate for TLS connections. Supersedes
101101 **sslInvalidHostNameAllowed**.
102102
@@ -186,14 +186,14 @@ parameters of the connection URI to specify the behavior of the client.
186186 is greater. For more information, see the server documentation for the
187187 :manual:`maxStalenessSeconds option </reference/connection-string/#urioption.maxStalenessSeconds>`.
188188 Not providing a parameter or explicitly specifying ``-1`` indicates
189- that there should be no staleness check for secondaries.
189+ that there must be no staleness check for secondaries.
190190
191191 | **Default**: ``-1``
192192
193193 * - **authMechanism**
194194 - string
195195 - Specifies the :doc:`authentication mechanism
196- </fundamentals/auth>` that the driver should use if a credential
196+ </fundamentals/auth>` that the driver uses if a credential
197197 was supplied.
198198
199199 | **Default**: By default, the client picks the most secure
@@ -204,9 +204,8 @@ parameters of the connection URI to specify the behavior of the client.
204204
205205 * - **authSource**
206206 - string
207- - Specifies the database that the supplied credentials should be
208- validated against.
209-
207+ - Specifies the database in which the supplied credentials are validated.
208+
210209 | **Default**: ``admin``
211210
212211 * - **authMechanismProperties**
@@ -239,7 +238,7 @@ parameters of the connection URI to specify the behavior of the client.
239238 * - **zlibCompressionLevel**
240239 - integer
241240 - Specifies the degree of compression that `Zlib <https://zlib.net/>`__
242- should use to decrease the size of requests to the connected MongoDB
241+ uses to decrease the size of requests to the connected MongoDB
243242 instance. The level can range from ``-1`` to ``9``, with lower values
244243 compressing faster (but resulting in larger requests) and larger values
245244 compressing slower (but resulting in smaller requests).
@@ -249,15 +248,15 @@ parameters of the connection URI to specify the behavior of the client.
249248 * - **retryWrites**
250249 - boolean
251250 - Specifies that the driver must retry supported write operations
252- if they fail due to a network error.
251+ if they are unable to complete due to a network error.
253252
254253 | **Default**: ``true``
255254
256255
257256 * - **retryReads**
258257 - boolean
259258 - Specifies that the driver must retry supported read operations
260- if they fail due to a network error.
259+ if they are unable to complete due to a network error.
261260
262261 | **Default**: ``true``
263262
@@ -280,23 +279,23 @@ parameters of the connection URI to specify the behavior of the client.
280279 - integer
281280 - Specifies the maximum number of connections a pool may be establishing
282281 concurrently.
283-
282+
284283 | **Default**: ``2``
285284
286285 * - **srvServiceName**
287286 - string
288287 - Specifies the service name of the
289288 `SRV resource records <https://www.rfc-editor.org/rfc/rfc2782>`__
290- the driver retrieves to construct your
289+ the driver retrieves to construct your
291290 :manual:`seed list </reference/glossary/#std-term-seed-list>`.
292- You must use the
291+ You must use the
293292 :manual:`DNS Seed List Connection Format </reference/connection-string/#dns-seed-list-connection-format>`
294293 in your
295294 :ref:`connection URI <connection-uri>`
296- to use this option.
297-
295+ to use this option.
296+
298297 | **Default**: ``mongodb``
299298
300299For a complete list of options, see the
301300`ConnectionString <{+api+}/apidocs/mongodb-driver-core/com/mongodb/ConnectionString.html>`__
302- API reference page .
301+ API documentation .
0 commit comments