diff options
| author | Andrew Gerrand <adg@golang.org> | 2013-11-01 11:30:30 +1100 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2013-11-01 11:30:30 +1100 |
| commit | 6d10afd9e566ca520aef916bca2a6a75b24fd01f (patch) | |
| tree | 47c8386248f994a56e62bb0dce2d9f0c361e9fe1 /src/pkg/database/sql/sql.go | |
| parent | 89f01489554257e297aa787c9d43d9e894729d21 (diff) | |
| download | go-6d10afd9e566ca520aef916bca2a6a75b24fd01f.tar.xz | |
[release-branch.go1.2] database/sql: Fix typos in doc
««« CL 17590043 / fb5224487f1b
database/sql: Fix typos in doc
R=golang-dev
CC=bradfitz, golang-dev
https://golang.org/cl/17590043
»»»
R=golang-dev
CC=golang-dev
https://golang.org/cl/20150046
Diffstat (limited to 'src/pkg/database/sql/sql.go')
| -rw-r--r-- | src/pkg/database/sql/sql.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/database/sql/sql.go b/src/pkg/database/sql/sql.go index f7b4f8cdab..b24b2a8a55 100644 --- a/src/pkg/database/sql/sql.go +++ b/src/pkg/database/sql/sql.go @@ -201,7 +201,7 @@ type DB struct { connRequests *list.List // of connRequest numOpen int pendingOpens int - // Used to sygnal the need for new connections + // Used to signal the need for new connections // a goroutine running connectionOpener() reads on this chan and // maybeOpenNewConnections sends on the chan (one send per needed connection) // It is closed during db.Close(). The close tells the connectionOpener |
