summaryrefslogtreecommitdiff
path: root/picture.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-02-07 00:25:01 +0800
committerxuri <xuri.me@gmail.com>2020-02-07 00:53:38 +0800
commite51aff2d9562bbfb290ef76a948facb6d4660eff (patch)
tree9555d9a40aca0ca5998d5183544c40945391082e /picture.go
parenta691c1048d2575d70ce97d2da80c2c40a2c37fb2 (diff)
Resolve #570, flat columns for the column's operation
Diffstat (limited to 'picture.go')
-rw-r--r--picture.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/picture.go b/picture.go
index 213bae9..0b91b91 100644
--- a/picture.go
+++ b/picture.go
@@ -462,8 +462,8 @@ func (f *File) GetPicture(sheet, cell string) (string, []byte, error) {
return f.getPicture(row, col, drawingXML, drawingRelationships)
}
-// DeletePicture provides a function to delete chart in XLSX by given
-// worksheet and cell name. Note that the image file won't deleted from the
+// DeletePicture provides a function to delete charts in XLSX by given
+// worksheet and cell name. Note that the image file won't be deleted from the
// document currently.
func (f *File) DeletePicture(sheet, cell string) (err error) {
col, row, err := CellNameToCoordinates(cell)