From 9e5816c0c9909a5e0591e5016f426a7b8384ea1f Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Thu, 7 Apr 2022 16:26:38 +0200 Subject: [PATCH] fixed a typo in basic-node-and-express intro (#45640) --- client/i18n/locales/english/intro.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index 18450ad6f2..68b2282c03 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -539,7 +539,7 @@ "intro": [ "Node.js is a JavaScript runtime that allows developers to write backend (server-side) programs in JavaScript. Node.js comes with a handful of built-in modules — small, independent programs — that help with this. Some of the core modules include HTTP, which acts like a server, and File System, a module to read and modify files.", "In the last set of courses you learned to install and manage packages from npm, which are collections of smaller modules. These packages can help you build larger, more complex applications.", - "Express is a lightweight web application framework, and is one of the most popular packages on npm. Express makes it much easier to create a server and handle routing for your application, which handles things like direct people to the correct page when they visit a certain endpoint like
/blog
.", + "Express is a lightweight web application framework, and is one of the most popular packages on npm. Express makes it much easier to create a server and handle routing for your application, which handles things like directing people to the correct page when they visit a certain endpoint like
/blog
.", "In this course, you'll learn the basics of Node and Express including how to create a server, serve different files, and handle different requests from the browser." ] },