From bc3c7d51a2efe5f0ad85667a8f9636f13941d577 Mon Sep 17 00:00:00 2001 From: xuri Date: Wed, 17 Nov 2021 00:25:36 +0800 Subject: ref #65: new formula function PRICE - fix COUPPCD result accuracy issue - update close spreadsheet example in documentation and README --- lib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib.go') diff --git a/lib.go b/lib.go index 535161a..ccb09ac 100644 --- a/lib.go +++ b/lib.go @@ -526,7 +526,7 @@ func bytesReplace(s, old, new []byte, n int) []byte { } w += copy(s[w:], s[i:]) - return s[0:w] + return s[:w] } // genSheetPasswd provides a method to generate password for worksheet -- cgit v1.2.1