Replace space indent with tab

This commit is contained in:
wenyu
2022-06-22 14:07:54 +08:00
parent 6f0bdfe924
commit 6b51b6fcd4
19 changed files with 955 additions and 955 deletions

View File

@@ -3,9 +3,9 @@ package imgo
import "errors"
var (
ErrSourceImageIsNil = errors.New("source image is nil")
ErrSourceNotSupport = errors.New("source not support")
ErrSourceStringIsEmpty = errors.New("source string is empty")
ErrSourceImageNotSupport = errors.New("source image not support")
ErrSaveImageFormatNotSupport = errors.New("save image format not support")
ErrSourceImageIsNil = errors.New("source image is nil")
ErrSourceNotSupport = errors.New("source not support")
ErrSourceStringIsEmpty = errors.New("source string is empty")
ErrSourceImageNotSupport = errors.New("source image not support")
ErrSaveImageFormatNotSupport = errors.New("save image format not support")
)