From a2fd37d767601b6b96bcf6dafccc44d4289794be Mon Sep 17 00:00:00 2001 From: Adam <42845085+adam-weiler@users.noreply.github.com> Date: Thu, 31 Jan 2019 23:51:21 -0500 Subject: [PATCH] Small spelling error. (#34512) Changed word "moongose" to "mongoose". --- .../use-model.findbyid-to-search-your-database-by-id.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.findbyid-to-search-your-database-by-id.en.md b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.findbyid-to-search-your-database-by-id.en.md index 41d8b0c31b..569c90e6f3 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.findbyid-to-search-your-database-by-id.en.md +++ b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.findbyid-to-search-your-database-by-id.en.md @@ -6,7 +6,7 @@ challengeType: 2 ## Description
-When saving a document, mongodb automatically adds the field _id, and set it to a unique alphanumeric key. Searching by _id is an extremely frequent operation, so moongose provides a dedicated method for it. Find the (only!!) person having a given _id, using Model.findById() -> Person. Use the function argument personId as search key. +When saving a document, mongodb automatically adds the field _id, and set it to a unique alphanumeric key. Searching by _id is an extremely frequent operation, so mongoose provides a dedicated method for it. Find the (only!!) person having a given _id, using Model.findById() -> Person. Use the function argument personId as search key.
## Instructions