diff options
author | xuri <xuri.me@gmail.com> | 2021-08-09 22:22:43 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-08-09 22:22:43 +0800 |
commit | c49e7aab306437f0e721620af4a24364edf4d601 (patch) | |
tree | 88ffb72996214d993626083487860f699de8bdf5 /merge.go | |
parent | cf9fbafdd805874267a0f5d27fd1c720b148ec91 (diff) |
Reduce cyclomatic complexities for the formula calculate function and update documentation for the API: `MergeCell` and `GetCellValue`
Diffstat (limited to 'merge.go')
-rw-r--r-- | merge.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -17,7 +17,9 @@ import ( ) // MergeCell provides a function to merge cells by given coordinate area and -// sheet name. For example create a merged cell of D3:E9 on Sheet1: +// sheet name. Merging cells only keeps the upper-left cell value, and +// discards the other values. For example create a merged cell of D3:E9 on +// Sheet1: // // err := f.MergeCell("Sheet1", "D3", "E9") // |