diff options
| author | Benny Siegert <bsiegert@gmail.com> | 2011-11-25 10:57:10 -0500 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2011-11-25 10:57:10 -0500 |
| commit | 5519b5d7165afc39e9d908a3c9ae24f221e38f53 (patch) | |
| tree | f423489c296d3124afe3bbda18651a3a200b94a6 /src/pkg/exp/sql/driver | |
| parent | 1f83c2b6d5db4ae8bd053b16574edbb849d62385 (diff) | |
| download | go-5519b5d7165afc39e9d908a3c9ae24f221e38f53.tar.xz | |
exp/sql/driver: Correct package name in comment.
IIRC, package sql used to be called db. There was one occurrence
of the old name in a comment.
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5431075
Diffstat (limited to 'src/pkg/exp/sql/driver')
| -rw-r--r-- | src/pkg/exp/sql/driver/driver.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/sql/driver/driver.go b/src/pkg/exp/sql/driver/driver.go index 1139afa6bb..f0bcca2910 100644 --- a/src/pkg/exp/sql/driver/driver.go +++ b/src/pkg/exp/sql/driver/driver.go @@ -7,7 +7,7 @@ // // Code simply using databases should use package sql. // -// Drivers only need to be aware of a subset of Go's types. The db package +// Drivers only need to be aware of a subset of Go's types. The sql package // will convert all types into one of the following: // // int64 |
