diff options
| author | Julien Schmidt <google@julienschmidt.com> | 2013-10-29 16:03:13 -0700 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2013-10-29 16:03:13 -0700 |
| commit | e6c4fa58b5a0c77c9c95d227ed5f36937df0544d (patch) | |
| tree | b1471a4879526675eddbbab8a74ece40569707b7 /src/pkg/database/sql/sql.go | |
| parent | 2ee03b5e593ce1613150181e831d97e029122117 (diff) | |
| download | go-e6c4fa58b5a0c77c9c95d227ed5f36937df0544d.tar.xz | |
database/sql: Fix typos in doc
R=golang-dev
CC=bradfitz, golang-dev
https://golang.org/cl/17590043
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 |
