This commit is contained in:
scs 2018-12-27 22:25:47 +00:00
parent b4121a3670
commit 6625ab0216
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ func randBytes(n int) []byte {
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
b := make([]byte, n)
for i := range b {
b[i] = letterBytes[rand.Intn(len(letterBytes))]
b[i] = letterBytes[rand.Int(len(letterBytes))]
}
return b
}