summaryrefslogtreecommitdiff
path: root/src/database/sql
diff options
context:
space:
mode:
authorshawnps <shawnpsmith@gmail.com>2017-01-07 08:23:11 -0800
committerIan Lance Taylor <iant@golang.org>2017-01-07 16:53:25 +0000
commit067bab00a80e028f1d7ce553b27aba2aa3e9675f (patch)
treeb81638335e93b794eab298a80866fa6478f349c1 /src/database/sql
parent8fa2344e98aa0eb2ef5a401847a4b760e9d19418 (diff)
downloadgo-git-067bab00a80e028f1d7ce553b27aba2aa3e9675f.tar.gz
all: fix misspellings
Change-Id: I429637ca91f7db4144f17621de851a548dc1ce76 Reviewed-on: https://go-review.googlesource.com/34923 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/database/sql')
-rw-r--r--src/database/sql/sql.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/sql.go b/src/database/sql/sql.go
index 58e927e0c4..0fa7c34a13 100644
--- a/src/database/sql/sql.go
+++ b/src/database/sql/sql.go
@@ -2086,7 +2086,7 @@ func (rs *Rows) Next() bool {
}
// The driver is at the end of the current result set.
// Test to see if there is another result set after the current one.
- // Only close Rows if there is no futher result sets to read.
+ // Only close Rows if there is no further result sets to read.
if !nextResultSet.HasNextResultSet() {
rs.Close()
}