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

View File

@@ -152,7 +152,7 @@ func getEncodedBlockLen(inputLen int64, dataBlocks int) (curEncBlockSize int64)
// err == nil, not err == EOF. Additionally offset can be provided to start
// the read at. copyN returns io.EOF if there aren't enough data to be read.
func copyN(writer io.Writer, disk StorageAPI, volume string, path string, offset int64, length int64) (err error) {
// Use 128KiB staging buffer to read upto length.
// Use 128KiB staging buffer to read up to length.
buf := make([]byte, readSizeV1)
// Read into writer until length.