diff --git a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.find-to-search-your-database.md b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.find-to-search-your-database.md index 72fee5a2f9..a3e22a5b1e 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.find-to-search-your-database.md +++ b/curriculum/challenges/english/05-apis-and-microservices/mongodb-and-mongoose/use-model.find-to-search-your-database.md @@ -12,7 +12,7 @@ In its simplest usage, `Model.find()` accepts a query document (a JSON object) a # --instructions-- -Modify the `findPeopleByName` function to find all the people having a given name, using `Model.find() -> [Person]` +Modify the `findPeopleByName` function to find all the people having a given name, using Model.find() -\> [Person] Use the function argument `personName` as the search key.