Commit ac2bceef authored by Klas af Geijerstam's avatar Klas af Geijerstam Committed by GitHub
Browse files

Added missing )

parent dbf4f6b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ var DictionaryGenerator = function(options) {
DictionaryGenerator.prototype.createKey = function(keyLength) {
  var text = '';
  for(var i = 0; i < keyLength; i++)
    text += this.dictionary[Math.floor(Math.random()*this.dictionary.length];
    text += this.dictionary[Math.floor(Math.random()*this.dictionary.length)];
  return text;
};