From 22f017caa2ed57a6f8c61f0d67845472a83a2c26 Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Mon, 1 Feb 2021 06:39:13 -0700 Subject: [PATCH] fix(learn): replace single bactick with tag for Crowdin (#40774) --- .../use-model.find-to-search-your-database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.