mirror of
https://github.com/diced/zipline.git
synced 2025-04-11 23:31:17 -05:00
Update randomWords.ts
This commit is contained in:
parent
7fa4727d44
commit
79da78a749
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ export function randomWords(numAdjectives: number = 2, separator: string = '-')
|
|||
let words = '';
|
||||
|
||||
for (let i = 0; i !== numAdjectives; ++i) {
|
||||
words += adjectives[randomIndex(adjectives.length)] + seperator;
|
||||
words += adjectives[randomIndex(adjectives.length)] + separator;
|
||||
}
|
||||
|
||||
words += animals[randomIndex(animals.length)];
|
||||
|
|
Loading…
Add table
Reference in a new issue