aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql/sql.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2016-01-27 12:49:13 -0800
committerJosh Bleecher Snyder <josharian@gmail.com>2016-02-21 15:35:50 +0000
commite43c74a0d8848d58814e1a8302d8f115d7f0b874 (patch)
treef87b5556f4a13af01c9f4a237d543fbfec9bc222 /src/database/sql/sql.go
parent5dc053b9dec4dc25fac195065ad32462ac28a543 (diff)
downloadgo-e43c74a0d8848d58814e1a8302d8f115d7f0b874.tar.xz
all: use cannot instead of can not
You can not use cannot, but you cannot spell cannot can not. Change-Id: I2f0971481a460804de96fd8c9e46a9cc62a3fc5b Reviewed-on: https://go-review.googlesource.com/19772 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/database/sql/sql.go')
-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 d8e7cb77af..28c36160b5 100644
--- a/src/database/sql/sql.go
+++ b/src/database/sql/sql.go
@@ -199,7 +199,7 @@ type Scanner interface {
// time.Time
// nil - for NULL values
//
- // An error should be returned if the value can not be stored
+ // An error should be returned if the value cannot be stored
// without loss of information.
Scan(src interface{}) error
}