Skip to content

Commit 6db2cd2

Browse files
authored
Merge pull request #15 from mongodb-developer/main
Merge in recent changes from main branch
2 parents 6684862 + f1a48c6 commit 6db2cd2

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

javascript/00_open_mongodb.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"source": [
77
"# Open MongoDB Using the MongoDB Extension\n",
88
"\n",
9-
"- click on the MongoDB extension on the side panel\n",
10-
"- to connect to the local database, click on ‘Library DB’ in the list of connections on the left side.\n",
9+
"- Click on the MongoDB extension on the side panel\n",
10+
"- To connect to the local database, click on ‘Library DB’ in the list of connections on the left side.\n",
1111
"\n",
1212
"We're using this connection string:\n",
1313
"\n",
@@ -34,10 +34,10 @@
3434
"source": [
3535
"## Open the library database\n",
3636
"\n",
37-
"- open the library database\n",
38-
"- open the books collection\n",
39-
"- click on Documents\n",
40-
"- open a document"
37+
"- Open the library database\n",
38+
"- Open the books collection\n",
39+
"- Click on Documents\n",
40+
"- Open a document"
4141
]
4242
}
4343
],

javascript/01_connect_database.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"cell_type": "markdown",
1414
"metadata": {},
1515
"source": [
16-
"## Select the Javascript Kernel\n",
16+
"## Select the JavaScript Kernel\n",
1717
"\n",
18-
"To run the code cells in these notebooks you need to select the appropriate kernel (programming language). In this case is Javascript. Click on the `Select Kernel` button at the top right, then `Jupyter Kernel` > `Deno`"
18+
"To run the code cells in these notebooks, you need to select the appropriate kernel (programming language). In this case, we'll use a JavaScript kernel. Click on the `Select Kernel` button at the top right, then `Jupyter Kernel` > `Deno`"
1919
]
2020
},
2121
{
@@ -40,7 +40,7 @@
4040
"source": [
4141
"## Set your connection String below\n",
4242
"\n",
43-
"We can just connect to `localhost` as this devcontainer is also running a MongoDB instance with some data, or you can connect to your own Atlas cluster just changing the `connectionString` below."
43+
"We can connect to the database hosted on `localhost` as this devcontainer is running a MongoDB instance with some data. Alternatively, you can connect to your own Atlas cluster by changing the `connectionString` below."
4444
]
4545
},
4646
{
@@ -105,7 +105,7 @@
105105
"source": [
106106
"## Send a Hello command\n",
107107
"\n",
108-
"The `hello()` command returns database server details for the backend MongoDB database used in this workshop."
108+
"The `hello()` command returns database server details for the MongoDB database."
109109
]
110110
},
111111
{

javascript/11_find_arrays.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
"source": [
148148
"## Don't make this mistake!\n",
149149
"\n",
150-
"This will try to find books that have two genres and their names are exactly these and in that order! It is comparing the whole array! Usually we want to search inside the array."
150+
"The query below will try to find books that have exactly two genres (Poetry and Fiction) in the designated order. The query looks for an exact match of the array. Usually we want to search inside the array."
151151
]
152152
},
153153
{

javascript/40_delete.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"id": "9f6caab3",
9292
"metadata": {},
9393
"source": [
94-
"### We find the document we just inserted using the `_id` field"
94+
"### Find the book using the `_id` field"
9595
]
9696
},
9797
{

0 commit comments

Comments
 (0)