diff --git a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.english.md b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.english.md index 295f378f5fe..4457a53f58a 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.english.md +++ b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.english.md @@ -15,7 +15,7 @@ This would allow updates to any 1.x.x version of the package. ## Instructions
Use the caret (^) to prefix the version of moment in your dependencies and allow npm to update it to any new MINOR release. -Note: The version numbers themselves not should be changed. +Note: The version numbers themselves should not be changed.
## Tests