From 68001ae96c9f858169b8191a91111960c4ef3887 Mon Sep 17 00:00:00 2001 From: DJ Adams Date: Tue, 27 Jul 2021 10:37:00 +0100 Subject: [PATCH] be explicit about having a breakpoint-able line --- language/nodejs/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/nodejs/develop.md b/language/nodejs/develop.md index 613d2194f4..a66c4b2fe3 100644 --- a/language/nodejs/develop.md +++ b/language/nodejs/develop.md @@ -198,7 +198,7 @@ Click the **Open dedicated DevTools for Node** link. This opens the DevTools tha Let’s change the source code and then set a breakpoint. -Add the following code above the existing `server.use()` statement, and save the file. +Add the following code above the existing `server.use()` statement, and save the file. Make sure that the `return` statement is on a line of its own, as shown here, so you can set the breakpoint appropriately. ```js server.use( '/foo', (req, res) => {