1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-04-11 23:31:17 -05:00
fix typo
This commit is contained in:
Koichi MATSUMOTO 2020-09-20 11:48:07 +09:00 committed by GitHub
parent 8cff5295e5
commit beb82735fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ export class User {
this.username = options.username;
this.password = options.password;
this.administrator = options.administrator;
this.token = randomId(config.core.userTokenLengt)
this.token = randomId(config.core.userTokenLength)
return this;
}
}
}