1
Fork 0
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:
dicedtomato 2025-03-28 15:56:07 -07:00 committed by GitHub
parent 7fa4727d44
commit 79da78a749
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)];