diff options
Diffstat (limited to 'pivotTable.go')
-rw-r--r-- | pivotTable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pivotTable.go b/pivotTable.go index bd9fee6..1ef0333 100644 --- a/pivotTable.go +++ b/pivotTable.go @@ -190,7 +190,7 @@ func (f *File) parseFormatPivotTableSet(opt *PivotTableOption) (*xlsxWorksheet, } pivotTableSheetPath, ok := f.getSheetXMLPath(pivotTableSheetName) if !ok { - return dataSheet, pivotTableSheetPath, fmt.Errorf("sheet %s is not exist", pivotTableSheetName) + return dataSheet, pivotTableSheetPath, fmt.Errorf("sheet %s does not exist", pivotTableSheetName) } return dataSheet, pivotTableSheetPath, err } |