database/sql: Fix typos in doc

R=golang-dev
CC=bradfitz, golang-dev
https://golang.org/cl/17590043
This commit is contained in:
Julien Schmidt 2013-10-29 16:03:13 -07:00 committed by Brad Fitzpatrick
parent 2ee03b5e59
commit e6c4fa58b5
2 changed files with 3 additions and 3 deletions

View file

@ -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