Fix typos found across repository

Signed-off-by: Justas Brazauskas <brazauskasjustas@gmail.com>
This commit is contained in:
Justas Brazauskas 2015-12-13 18:00:39 +02:00
parent df5dc52c05
commit 244162287a
33 changed files with 39 additions and 39 deletions

View file

@ -4,7 +4,7 @@ import "sort"
// FileInfoSumInterface provides an interface for accessing file checksum
// information within a tar file. This info is accessed through interface
// so the actual name and sum cannot be medled with.
// so the actual name and sum cannot be melded with.
type FileInfoSumInterface interface {
// File name
Name() string

View file

@ -146,7 +146,7 @@ var (
}
)
// DefaultTHash is default TarSum hashing algoritm - "sha256".
// DefaultTHash is default TarSum hashing algorithm - "sha256".
var DefaultTHash = NewTHash("sha256", sha256.New)
type simpleTHash struct {
@ -261,7 +261,7 @@ func (ts *tarSum) Read(buf []byte) (int, error) {
return 0, err
}
// Filling the tar writter
// Filling the tar writer
if _, err = ts.tarW.Write(buf2[:n]); err != nil {
return 0, err
}