minor typo fix

This commit is contained in:
Matthieu Fronton 2015-10-13 22:38:13 +02:00
parent 35a7f0de22
commit cd06cd078b
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ func Combine(parts [][]byte) ([]byte, error) {
for i, part := range parts {
samp := part[firstPartLen-1]
if exists := checkMap[samp]; exists {
return nil, fmt.Errorf("duplicte part detected")
return nil, fmt.Errorf("duplicate part detected")
}
checkMap[samp] = true
x_samples[i] = samp