Skip to content

Commit

Permalink
fixed a typo in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Strauss committed Oct 11, 2016
1 parent e99945a commit 9c0654a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ app.listen(8080, function() {
console.log("Listening!");
});

//Cusotm authorizer checking if the username starts with 'A' and the password with 'secret'
//Custom authorizer checking if the username starts with 'A' and the password with 'secret'
function myAuthorizer(username, password) {
return username.startsWith('A') && password.startsWith('secret');
}
Expand Down

0 comments on commit 9c0654a

Please sign in to comment.