Skip to content

Commit 17f7471

Browse files
committed
Fix
1 parent 47f2abd commit 17f7471

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/connect/connection-targets.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ deployment:
7171
Multiple Deployments
7272
--------------------
7373

74-
You can connect to multiple MongoDB deployments by specifying a list of MongoDB instances
74+
You can connect to multiple MongoDB deployments by specifying a list of deployments
7575
in your connection string.
7676

77-
The following code shows how to use {+driver-short+} to connect to three instances:
77+
The following code shows how to use {+driver-short+} to connect to three deployments:
7878

7979
.. code-block:: python
8080

8181
from pymongo import MongoClient
8282

8383
client = MongoClient("mongodb://host1:27017,host2:27017,host3:27017")
8484

85-
{+driver-short+} evenly load balances operations across the specified instances
86-
within the specified ``localThresholdMS`` of the lowest-latency instance. The
85+
{+driver-short+} evenly load balances operations across the specified deployments
86+
within the specified ``localThresholdMS`` of the lowest-latency deployment. The
8787
``localThresholdMS`` option defaults to ``15``.
8888

8989
To learn more about how {+driver-short+} load balances operations across multiple
90-
MongoDB instances, see the :ref:`pymongo-server-selection` guide.
90+
MongoDB deployments, see the :ref:`pymongo-server-selection` guide.
9191

9292
Replica Sets
9393
------------

0 commit comments

Comments
 (0)