From f0bc3a62b7a993fb07f4a300f49d893a76f6a653 Mon Sep 17 00:00:00 2001 From: Sonu <152873883+Sonudhukia143@users.noreply.github.com> Date: Fri, 29 Aug 2025 22:46:36 +0530 Subject: [PATCH] =?UTF-8?q?fix(curriculum):=20correct=20spelling=20'manger?= =?UTF-8?q?s'=20=E2=86=92=20'managers'=20in=20lecture=20(#61989)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../67d1ab248317a5a29058a763.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-routing-react-frameworks-and-dependency-management-tools/67d1ab248317a5a29058a763.md b/curriculum/challenges/english/blocks/lecture-routing-react-frameworks-and-dependency-management-tools/67d1ab248317a5a29058a763.md index b4ba207be71..d222174a781 100644 --- a/curriculum/challenges/english/blocks/lecture-routing-react-frameworks-and-dependency-management-tools/67d1ab248317a5a29058a763.md +++ b/curriculum/challenges/english/blocks/lecture-routing-react-frameworks-and-dependency-management-tools/67d1ab248317a5a29058a763.md @@ -65,7 +65,7 @@ Another important aspect of the `package.json` file are the dev dependencies: Dev dependencies are packages that are only used for development and not in production. An example of this would be a testing library like Jest. You would install Jest as a dev dependency because you only use it to test your project locally, and isn't needed for the application to run in production. -For the majority of this lecture, we have been focusing on npm. But there are other package mangers like yarn and pnpm. So which package manager should you use for your project? +For the majority of this lecture, we have been focusing on npm. But there are other package managers like yarn and pnpm. So which package manager should you use for your project? Well, the short answer is it depends.