Task Attachments #104

Merged
konrad merged 63 commits from feature/attachments into master 2019-10-16 20:52:31 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 70791f5c65 - Show all commits

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)
}