summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2020-05-17 17:36:53 +0800
committerxuri <xuri.me@gmail.com>2020-05-17 17:36:53 +0800
commit98221a332ff9c37c9b20c44e9efdbe4c22a5cf5c (patch)
treedcdffe469b8ec3d37e2739207f7316e7692341db /rows.go
parent9b7d8463d39ad5fcaae24e5a3b7da296c5e29d17 (diff)
Merge pull request #410
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/rows.go b/rows.go
index 6a67672..17216df 100644
--- a/rows.go
+++ b/rows.go
@@ -148,7 +148,8 @@ func (err ErrSheetNotExist) Error() string {
return fmt.Sprintf("sheet %s is not exist", string(err.SheetName))
}
-// Rows return a rows iterator. For example:
+// Rows returns a rows iterator, used for streaming reading data for a
+// worksheet with a large data. For example:
//
// rows, err := f.Rows("Sheet1")
// if err != nil {