Skip to content

Commit 92c2c71

Browse files
committed
corrected typos
1 parent d5d6c69 commit 92c2c71

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/20-prerequisites/10-postgres.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ docker run -p 5432:5432 sample-postgres-library
3939
```
4040
The PostgreSQL server can be accessed at localhost:5432 with a username of `postgres` and a password of `postgres`.
4141

42-
## 🦸 Option 4: Load an SQL file
42+
## 🦸 Option 4: Load a SQL file
4343
Choose this option if you just want a quick hands-on experience and you don't need to run actual migration.
4444
Download the file [library-schema.sql](https://github.com/mongodb-developer/relational-migrator-lab/blob/main/resource/library-schema.sql)
4545
and upload this file to the Relational Migrator later, at the **create a project** step.

docs/20-prerequisites/20-mongodb.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ know the URI for the cluster, and have a database user with the readWriteAnyData
3232
## 🦸 Option 3: Run a MongoDB container using Docker
3333

3434

35-
If you don't have an existing PostgreSQL server but have Docker installed, you can easily load a container pre-configured with
35+
If you don't have an existing MongoDB server but have Docker installed, you can easily load a container pre-configured with
3636
MongoDB by running the following command:
3737

3838
```

docs/40-desired-schema-mongodb.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ The following screenshot shows the MongoDB schema we will be creating in this la
1111
<Screenshot url="https://www.mongodb.com/products/tools/relational-migrator" src="img/40-image-001.png" alt="Screenshot of the connect modal" />
1212

1313
A few key points:
14-
- Books will contain an array of authors with author id and name for fast retrieval. This is using the [Extended Reference pattern](https://www.mongodb.com/blog/post/building-with-patterns-the-extended-reference-pattern) to reference a separate collection (Authors) but having in books enough information aubout the author.
14+
- Books will contain an array of authors with author id and name for fast retrieval. This is using the [Extended Reference pattern](https://www.mongodb.com/blog/post/building-with-patterns-the-extended-reference-pattern) to reference a separate collection (Authors) but having in books enough information about the author.
1515
- Reviews are not included in the books collection as they can grow and become an [unbounded array](https://www.mongodb.com/developer/products/mongodb/schema-design-anti-pattern-massive-arrays/), an antipattern in schema design.
1616
- An author can have several aliases. We just store those strings in an array.

docs/50-create-project/50-create-new-project.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Ensure Relational Migrator is installed and running (usually at http://127.0.0.1
1212
<Screenshot url="http://127.0.0.1:8278" src="img/50-image-001.png" alt="Screenshot of the connect modal" />
1313

1414
## Select one of the three options
15-
- Click **Connect database** if you are running the origin DB in the cloud, Docker or using your own hardware.
15+
- Click **Connect to live database** if you are running the origin DB in the cloud, Docker or using your own hardware.
1616
- Click **Load schema from a file** if you don't have access to a source database and just want to work with the schema (you won't have any data to import though).
1717
- Click **Use a sample schema** to play around with a test schema, without any data. This does not require connecting to a real DB. We won't use this one in this Lab.
1818

docs/50-create-project/80-define-initial-schema.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Relational Migrator gives you three options on how your MongoDB schema should be
66

77
Select `Start with a recommended MongoDB schema`
88

9-
You are asked which of the tables should represented as a collection in MongoDB.
9+
You are asked which tables should represented as a collection in MongoDB.
1010

11-
Select the five collections that we want as they are the main Entities in our schema.
11+
Select the following five collections as they are the main entities in our schema:
1212

1313
- authors
1414
- books
@@ -20,6 +20,6 @@ Any tables you did not check will be embedded in other collections.
2020

2121
<Screenshot url="https://www.mongodb.com/products/tools/relational-migrator" src="img/80-image-001.png" alt="Screenshot of the connect modal" />
2222

23-
Select the casing you'd like for your collections. Defaults to camelCase.
23+
Select the casing you'd like for your collections - the default is camelCase.
2424

2525
Click `Next`, then give your project a name.

0 commit comments

Comments
 (0)