Skip to content

Commit 217b754

Browse files
committed
fix
1 parent ad520ec commit 217b754

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

source/connection-troubleshooting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ instance. For more information about configuring the firewall, see
199199
Check the Number of Connections
200200
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
201201

202-
Each ``MongoClient`` instance supports a maximum number of concurrent open
202+
Each ``Client`` instance supports a maximum number of concurrent open
203203
connections in its connection pool. The configuration parameter ``maxPoolSize``
204204
defines this value and is set to ``100`` by default. If there are already a
205205
number of open connections equal to ``maxPoolSize``, the server waits until

source/fundamentals/enterprise-auth.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ You can configure OIDC for Azure IMDS in the following ways:
265265
previously created.
266266

267267
The following code example shows how to set these options when creating a
268-
``MongoClient``:
268+
``Client``:
269269

270270
.. literalinclude:: /includes/authentication/azure-imds-client.go
271271
:dedent:
@@ -351,7 +351,7 @@ You can configure OIDC for GCP IMDS in the following ways:
351351
previously created.
352352

353353
The following code example shows how to set these options when creating a
354-
``MongoClient``:
354+
``Client``:
355355

356356
.. literalinclude:: /includes/authentication/gcp-imds-client.go
357357
:language: go

source/usage-examples/changestream.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Monitor Data Changes
88
.. meta::
99
:description: Learn by example: how to monitor data changes in MongoDB by using the {+driver-long+}.
1010

11-
You can open a change stream on a ``MongoCollection``,
12-
``MongoDatabase``, or ``MongoClient`` by using the ``Watch()`` method.
11+
You can open a change stream on a ``Collection``,
12+
``Database``, or ``Client`` by using the ``Watch()`` method.
1313

1414
Example
1515
-------

0 commit comments

Comments
 (0)