Fixed misspell
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2019-10-13 17:12:56 +02:00
parent 9164819e72
commit 70791f5c65
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ type ErrFileDoesNotExist struct {
FileID int64
}
// Error is the error implementaion of ErrFileDoesNotExist
// Error is the error implementation of ErrFileDoesNotExist
func (err ErrFileDoesNotExist) Error() string {
return fmt.Sprintf("file %d does not exist", err.FileID)
}
@ -40,7 +40,7 @@ type ErrFileIsTooLarge struct {
Size int64
}
// Error is the error implementaion of ErrFileIsTooLarge
// Error is the error implementation of ErrFileIsTooLarge
func (err ErrFileIsTooLarge) Error() string {
return fmt.Sprintf("file is too large [Size: %d]", err.Size)
}