Misspell warnings fix (#2001)

This commit is contained in:
karthic rao
2016-06-27 10:35:48 +05:30
committed by Harshavardhana
parent 0d3a9c9438
commit ce7d5eddbc
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ func generateBytesData(size int) []byte {
b = letterBytes[rand.Intn(len(letterBytes))]
return []byte{b}
}
// repeat the random character choosen size
// repeat the random character chosen size.
return bytes.Repeat(getRandomByte(), size)
}