Skip to content

Commit

Permalink
Replace misplaced T with Y in set of characters
Browse files Browse the repository at this point in the history
  • Loading branch information
pepve committed Jul 14, 2018
1 parent d613834 commit 9aee69d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ exports.generateSecretASCII = function generateSecretASCII (length, symbols) {
};

function encodeASCII (bytes, symbols) {
var set = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghijklmnopqrstuvwxyz';
var set = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
if (symbols) {
set += '!@#$%^&*()<>?/[]{},.:;';
}
Expand Down

0 comments on commit 9aee69d

Please sign in to comment.