diff options
author | sceneq <sceneq@users.noreply.github.com> | 2022-05-16 22:05:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 21:05:22 +0800 |
commit | be5a4033c0c7de6247c02dc3ab76b634ac19d4c6 (patch) | |
tree | d4958490277d9f2ebea71547cb19a411b592c4e8 /errors.go | |
parent | 19a0cf3cec71fc49851d29fb420674b027f50d93 (diff) |
This closes #1229, rename ErrMaxFileNameLength to ErrMaxFilePathLength (#1230)
Co-authored-by: sceneq
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -109,9 +109,9 @@ var ( // ErrWorkbookExt defined the error message on receive an unsupported // workbook extension. ErrWorkbookExt = errors.New("unsupported workbook extension") - // ErrMaxFileNameLength defined the error message on receive the file name + // ErrMaxFilePathLength defined the error message on receive the file path // length overflow. - ErrMaxFileNameLength = errors.New("file name length exceeds maximum limit") + ErrMaxFilePathLength = errors.New("file path length exceeds maximum limit") // ErrEncrypt defined the error message on encryption spreadsheet. ErrEncrypt = errors.New("not support encryption currently") // ErrUnknownEncryptMechanism defined the error message on unsupported |