From 4fc2bdd2a1eb6ff139b04e8158e5f758b50e78f2 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 15 Feb 2019 18:15:37 -0500 Subject: [PATCH] Update use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.en.md (#34871) Grammatical change. --- ...ways-use-the-latest-patch-version-of-a-dependency.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.english.md b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.english.md index 275713cf8a..05fd400933 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.english.md +++ b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.english.md @@ -12,7 +12,7 @@ Example "some-package-name": "~1.3.8" allows updates to any 1.3.x version. Instructions Use the tilde-character (~) to prefix the version of moment in your dependencies and allow npm to update it to any new PATCH release. -Note that the version numbers themselves not should be changed. +Note that the version numbers themselves should not be changed. ## Instructions