Skip to content

Commit 5e8e748

Browse files
CSHARP-2855: Fix typo error.
1 parent a16c0a8 commit 5e8e748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MongoDB.Driver.Examples/TransactionExamplesForDocs/WithTransactionExample1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void Example1()
4141
// For a replica set, include the replica set name and a seedlist of the members in the URI string; e.g.
4242
// string uri = "mongodb://mongodb0.example.com:27017,mongodb1.example.com:27017/?replicaSet=myRepl";
4343
// For a sharded cluster, connect to the mongos instances; e.g.
44-
// string uri = "mongodb://mongos0.example.com:27017,mongos1.example.com:27017:27017/";
44+
// string uri = "mongodb://mongos0.example.com:27017,mongos1.example.com:27017/";
4545
var client = new MongoClient(connectionString);
4646

4747
// Prereq: Create collections. CRUD operations in transactions must be on existing collections.

0 commit comments

Comments
 (0)