Skip to content

Commit 27d572f

Browse files
authored
Merge pull request #14 from Meg528/patch-6
Update 0-using-library-database.mdx
2 parents 03dc7e8 + f46b899 commit 27d572f

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

docs/30-simple-queries/0-using-library-database.mdx

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import Tabs from '@theme/Tabs';
22
import TabItem from '@theme/TabItem';
33

4-
# 👐 Using the library database
4+
# 👐 Using the Library Database
55

66
## Select the library database
77

8-
💻 We'll use the `library` database for all of the hands-on exercises in this lab.
9-
If you haven't already, import the [library data](https://mdb.link/import-library-data) into your database cluster.
8+
💻 We'll use the `library` database for all of the hands-on exercises in this lab. If you haven't already, import the [library data](https://mdb.link/import-library-data) into your database cluster.
109

1110
<Tabs groupId="aggregations">
1211
<TabItem value="atlas" label="Atlas UI">
@@ -19,13 +18,13 @@ Select the correct database in the aggregation pipeline builder.
1918
</TabItem>
2019
<TabItem value="mongodb-shell" label="MongoDB Shell">
2120

22-
To do that, in a MongoDB shell type in:
21+
To do that, in a MongoDB shell, type:
2322

2423
```js
2524
use library
2625
```
2726

28-
You can show all collections with
27+
You can show all collections with:
2928

3029
```js
3130
show collections
@@ -36,7 +35,7 @@ show collections
3635
🦸‍♂️ 💻 How would you switch to a database called `orders`?
3736

3837
:::info
39-
Extra activity, do it if you have extra time or are following at home, won't be covered during the hands-on lab.
38+
Extra activity! Do it if you have extra time or are following along at home. It won't be covered during the hands-on lab.
4039
:::
4140

4241
<details>
@@ -47,7 +46,7 @@ Extra activity, do it if you have extra time or are following at home, won't be
4746
use orders
4847
```
4948

50-
Even if this database does not yet exists, MongoDB can change to it. If we create a collection, users, etc. then this DB will get created.
49+
Even if this database does not yet exist, MongoDB can change to it. If we create a collection, users, etc., then this DB will be created.
5150

5251
Remember to get back to the library database by using:
5352

@@ -57,13 +56,13 @@ use library
5756
</div>
5857
</details>
5958

60-
## 🦸‍♂️ Showing all Databases
59+
## 🦸‍♂️ Showing all databases
6160

6261
:::info
63-
Extra activity, do it if you have extra time or are following at home, won't be covered during the hands-on Lab
62+
Extra activity! Do it if you have extra time or are following along at home. It won't be covered during the hands-on lab.
6463
:::
6564

66-
You can also list other databases in your MongoDB instance with
65+
You can also list other databases in your MongoDB instance with:
6766

6867
```js
6968
show databases

0 commit comments

Comments
 (0)