From 270611d8098c4b8e1519cca8cffb308c3b2d5885 Mon Sep 17 00:00:00 2001 From: Raymond Szebert Date: Thu, 10 Nov 2022 15:47:39 -0800 Subject: [PATCH] Update README.md Typo in the README.me file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f3d758..671d1c7 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ var server = http.createServer(function (req, res) { function check (name, pass) { var valid = true - // Simple method to prevent short-circut and use timing-safe compare + // Simple method to prevent short-circuit and use timing-safe compare valid = compare(name, 'john') && valid valid = compare(pass, 'secret') && valid