From be5a4033c0c7de6247c02dc3ab76b634ac19d4c6 Mon Sep 17 00:00:00 2001 From: sceneq Date: Mon, 16 May 2022 22:05:22 +0900 Subject: This closes #1229, rename ErrMaxFileNameLength to ErrMaxFilePathLength (#1230) Co-authored-by: sceneq --- errors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'errors.go') diff --git a/errors.go b/errors.go index c9d18cb..64fc711 100644 --- a/errors.go +++ b/errors.go @@ -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 -- cgit v1.2.1