diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2013-02-13 18:47:25 -0800 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2013-02-13 18:47:25 -0800 |
| commit | 0c8ed71079b4ba7a234192c9b0996115c505b981 (patch) | |
| tree | 107ab75f61adf5c7f6af4f803e456c5cb2efe32f /src/pkg/database/sql/doc.txt | |
| parent | cd566958e938c695d09730dfcb7c2b8e76658f89 (diff) | |
| download | go-0c8ed71079b4ba7a234192c9b0996115c505b981.tar.xz | |
database/sql: fix doc references to old package name
It used to be package "db" but was long ago renamed
to be "sql".
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7322075
Diffstat (limited to 'src/pkg/database/sql/doc.txt')
| -rw-r--r-- | src/pkg/database/sql/doc.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/database/sql/doc.txt b/src/pkg/database/sql/doc.txt index fb16595487..405c5ed2a6 100644 --- a/src/pkg/database/sql/doc.txt +++ b/src/pkg/database/sql/doc.txt @@ -21,7 +21,7 @@ Goals of the sql and sql/driver packages: Database Driver -> sql (to register) + sql/driver (implement interfaces) * Make type casting/conversions consistent between all drivers. To - achieve this, most of the conversions are done in the db package, + achieve this, most of the conversions are done in the sql package, not in each driver. The drivers then only have to deal with a smaller set of types. |
