Skip to content

Commit 78a5614

Browse files
committed
fix comments
1 parent 67bbc31 commit 78a5614

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/service-connector/how-to-integrate-mongodb-atlas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Reference the connection details and sample code in the following tables, accord
5959

6060
| Default environment variable name | Description | Example value |
6161
| ------------------------------------- | --------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
62-
| `MONGODBATLAS_CLUSTER_CONNECTIONSTRING` | JDBC MongoDB connection string | `mongodb+srv://myUser:[email protected]/?retryWrites=true&w=majority&appName=Cluster0` |
62+
| `MONGODBATLAS_CLUSTER_CONNECTIONSTRING` | JDBC MongoDB connection string | `jdbc:mongodb+srv://myUser:[email protected]/?retryWrites=true&w=majority&appName=Cluster0` |
6363

6464
#### [Python](#tab/python)
6565

articles/service-connector/includes/code-mongodb-atlas-secret.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.author: wchi
1313
dotnet add package MongoDb.Driver
1414
```
1515

16-
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB.
16+
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB Atlas.
1717
```csharp
1818
using MongoDB.Driver;
1919
@@ -33,7 +33,7 @@ ms.author: wchi
3333
</dependency>
3434
```
3535

36-
1. Get the connection string from the environment variable added by Service Connector and connect to MongoDB.
36+
1. Get the connection string from the environment variable added by Service Connector and connect to MongoDB Atlas.
3737

3838
```java
3939
import com.mongodb.MongoClient;
@@ -61,7 +61,7 @@ ms.author: wchi
6161
pip install pymongo
6262
```
6363
64-
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB.
64+
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB Atlas.
6565
```python
6666
import os
6767
import pymongo
@@ -75,7 +75,7 @@ ms.author: wchi
7575
```bash
7676
go get go.mongodb.org/mongo-driver/mongo
7777
```
78-
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB.
78+
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB Atlas.
7979
```go
8080
import (
8181
"context"
@@ -110,7 +110,7 @@ ms.author: wchi
110110
```bash
111111
npm install mongodb
112112
```
113-
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB.
113+
2. Get the connection string from the environment variable added by Service Connector and connect to MongoDB Atlas.
114114
```javascript
115115
const { MongoClient, ObjectId } = require('mongodb');
116116
@@ -120,4 +120,4 @@ ms.author: wchi
120120
121121
122122
### [Other](#tab/none)
123-
For other languages, you can use the MongoDB resource endpoint and other properties that Service Connector sets to the environment variables to connect to MongoDB. For environment variable details, see [Integrate MongoDB with Service Connector](../how-to-integrate-mongodb-atlas.md).
123+
For other languages, you can use the MongoDB resource endpoint and other properties that Service Connector sets to the environment variables to connect to MongoDB Atlas. For environment variable details, see [Integrate MongoDB with Service Connector](../how-to-integrate-mongodb-atlas.md).

0 commit comments

Comments
 (0)