From 25a79bb990aab575c08671d12c408dc44c4dc8d1 Mon Sep 17 00:00:00 2001 From: billybrown-iii <69483354+billybrown-iii@users.noreply.github.com> Date: Sun, 26 Jun 2022 10:39:26 -0700 Subject: [PATCH] fix(curriculum): typo in backend challenge (#46651) fix: typo in backend challenge --- .../chain-middleware-to-create-a-time-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-back-end-development-and-apis/basic-node-and-express/chain-middleware-to-create-a-time-server.md b/curriculum/challenges/english/05-back-end-development-and-apis/basic-node-and-express/chain-middleware-to-create-a-time-server.md index d68ab003f34..92cf1be3c35 100644 --- a/curriculum/challenges/english/05-back-end-development-and-apis/basic-node-and-express/chain-middleware-to-create-a-time-server.md +++ b/curriculum/challenges/english/05-back-end-development-and-apis/basic-node-and-express/chain-middleware-to-create-a-time-server.md @@ -8,7 +8,7 @@ dashedName: chain-middleware-to-create-a-time-server # --description-- -Middleware can be mounted at a specific route using `app.METHOD(path, middlewareFunction)`. Middleware can also be chained inside route definition. +Middleware can be mounted at a specific route using `app.METHOD(path, middlewareFunction)`. Middleware can also be chained within a route definition. Look at the following example: