aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/sql')
-rw-r--r--src/database/sql/doc.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/doc.txt b/src/database/sql/doc.txt
index 405c5ed2a6..1341b5768f 100644
--- a/src/database/sql/doc.txt
+++ b/src/database/sql/doc.txt
@@ -31,7 +31,7 @@ Goals of the sql and sql/driver packages:
* Handle concurrency well. Users shouldn't need to care about the
database's per-connection thread safety issues (or lack thereof),
and shouldn't have to maintain their own free pools of connections.
- The 'db' package should deal with that bookkeeping as needed. Given
+ The 'sql' package should deal with that bookkeeping as needed. Given
an *sql.DB, it should be possible to share that instance between
multiple goroutines, without any extra synchronization.