Small spelling error. (#34512)

Changed word "moongose" to "mongoose".
This commit is contained in:
Adam
2019-01-31 23:51:21 -05:00
committed by Randell Dawson
parent 7ccd4dacf5
commit a2fd37d767

View File

@ -6,7 +6,7 @@ challengeType: 2
## Description ## Description
<section id='description'> <section id='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.
</section> </section>
## Instructions ## Instructions