From 06e26c897719ec375a18d9cdcf24cc89c850d0bc Mon Sep 17 00:00:00 2001 From: Hum4n01d Date: Tue, 19 Mar 2019 18:14:54 -0700 Subject: [PATCH] Fix typos (#31865) --- guide/english/nodejs/express/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/nodejs/express/index.md b/guide/english/nodejs/express/index.md index 8c11ae18c8..1084b08753 100644 --- a/guide/english/nodejs/express/index.md +++ b/guide/english/nodejs/express/index.md @@ -458,13 +458,13 @@ app.set('views', './views'); Since we are using `app.set()` which indicates configuration within our server file, we must place them before we define any route or a middleware function. -In the `views` direcotry, create file called `index.pug`. +In the `views` directory, create file called `index.pug`. ```pug doctype html html head - tite="Hello from Pug" + title="Hello from Pug" body p.greetings Hello World! ```