Skip to content

Commit

Permalink
Fix syntax typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
evanvosberg committed Feb 11, 2020
1 parent 7e2710a commit 8623234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ var CryptoJS = CryptoJS || (function (Math, undefined) {
var words = [];

for (var i = 0; i < nBytes; i += 4) {
words.push((cryptoSecureRandomInt());
words.push(cryptoSecureRandomInt());
}

return new WordArray.init(words, nBytes);
Expand Down

0 comments on commit 8623234

Please sign in to comment.