Skip to content

Commit 9c0654a

Browse files
author
Leon Strauss
committed
fixed a typo in a comment
1 parent e99945a commit 9c0654a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ app.listen(8080, function() {
6363
console.log("Listening!");
6464
});
6565

66-
//Cusotm authorizer checking if the username starts with 'A' and the password with 'secret'
66+
//Custom authorizer checking if the username starts with 'A' and the password with 'secret'
6767
function myAuthorizer(username, password) {
6868
return username.startsWith('A') && password.startsWith('secret');
6969
}

0 commit comments

Comments
 (0)