From 17d793afc44a1cd5cf3edf01241bad37b95f9830 Mon Sep 17 00:00:00 2001 From: Maledong Date: Sun, 19 Sep 2021 10:00:30 +0800 Subject: [PATCH] Revert "fix typo in simple-profiling.md (#4115)" This reverts commit 5844c38af72f6e8e30f40b045a011bef67698e03. --- locale/en/docs/guides/simple-profiling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en/docs/guides/simple-profiling.md b/locale/en/docs/guides/simple-profiling.md index 0bdd413ac5917..de51d01613409 100644 --- a/locale/en/docs/guides/simple-profiling.md +++ b/locale/en/docs/guides/simple-profiling.md @@ -59,7 +59,7 @@ app.get('/auth', (req, res) => { username = username.replace(/[!@#$%^&*]/g, ''); - if (!username || !password || !users[username]) { + if (!username || !password || users[username]) { return res.sendStatus(400); }