From 7ccd4dacf5ff3cf9b348b57622ecb47d490be7e1 Mon Sep 17 00:00:00 2001 From: Walter Woodward <35038191+walterswoodward@users.noreply.github.com> Date: Thu, 31 Jan 2019 23:48:51 -0500 Subject: [PATCH] typo (#34340) present tense `build` changed to proper passed tense `built` --- .../create-and-save-a-record-of-a-model.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-and-save-a-record-of-a-model.en.md b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-and-save-a-record-of-a-model.en.md index b5ca8a3e6a..d177bfaa7d 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-and-save-a-record-of-a-model.en.md +++ b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/create-and-save-a-record-of-a-model.en.md @@ -6,7 +6,7 @@ challengeType: 2 ## Description
-Create a document instance using the Person constructor you build before. Pass to the constructor an object having the fields name, age, and favoriteFoods. Their types must be conformant to the ones in the Person Schema. Then call the method document.save() on the returned document instance. Pass to it a callback using the Node convention. This is a common pattern, all the following CRUD methods take a callback function like this as the last argument. +Create a document instance using the Person constructor you built before. Pass to the constructor an object having the fields name, age, and favoriteFoods. Their types must be conformant to the ones in the Person Schema. Then call the method document.save() on the returned document instance. Pass to it a callback using the Node convention. This is a common pattern, all the following CRUD methods take a callback function like this as the last argument. /* Example */ // ... person.save(function(err, data) {