From e410996d22ab87ed60f48d0df5b37a5306687277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20H=C3=A9bert?= Date: Tue, 19 Mar 2019 18:15:35 -0700 Subject: [PATCH] Fixed typos (#32850) --- guide/english/nodejs/express/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/nodejs/express/index.md b/guide/english/nodejs/express/index.md index 1084b08753..213503041b 100644 --- a/guide/english/nodejs/express/index.md +++ b/guide/english/nodejs/express/index.md @@ -68,7 +68,7 @@ Now we have `package.json` file, we can install Express by running the command: npm install --save express ``` -We can confirm that Express has correctly installed by two ways. First, there will be new section in `package.json` file named `dependencies` under which our Express exists: +We can confirm that Express has correctly installed by two ways. First, there will be a new section in `package.json` file named `dependencies` under which our Express exists: ```json { @@ -136,7 +136,7 @@ These statements are the custom application based settings that are defined afte **Middleware** -These functions determine the flow of request-response cycle. They are executred after every incoming request. We can also define custom middleware functions. We have section on them below. +These functions determine the flow of request-response cycle. They are executred after every incoming request. We can also define custom middleware functions. We have a section on them below. **Routes** @@ -146,7 +146,7 @@ They are the endpoints defined in our server that helps to perform operations fo The last that gets executed in an Express server is the `app.listen()` function which starts our server. -We will now start disussing sections that we haven't previously discussed about. +We will now start discussing sections that we haven't previously discussed about. ## Routing