]> Cypherpunks repositories - gostls13.git/commitdiff
database/sql: fix outdated package name in doc.txt
authorMartin Garton <garton@gmail.com>
Fri, 30 Jun 2017 19:03:27 +0000 (20:03 +0100)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 30 Jun 2017 19:11:17 +0000 (19:11 +0000)
Change-Id: I4417c5a8537095a6464ce919b2e5cb250e179939
Reviewed-on: https://go-review.googlesource.com/47332
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/database/sql/doc.txt

index 405c5ed2a6136ad32507fd9951ead0ed0ffd2f5e..1341b5768f43046dfc4c80a0904c08fd3727a8d3 100644 (file)
@@ -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.