diff options
| author | Davor Kapsa <davor.kapsa@gmail.com> | 2017-09-08 12:59:59 +0200 |
|---|---|---|
| committer | Emmanuel Odeke <emm.odeke@gmail.com> | 2017-09-08 13:49:40 +0000 |
| commit | e16dc7d5a9e4136d56fc84172d2fbe747b096d45 (patch) | |
| tree | 229634cbd09caf36da55bb337390aa17719cb215 /src/database | |
| parent | caae0917bff12751019cb4240e99874fa692e770 (diff) | |
| download | go-e16dc7d5a9e4136d56fc84172d2fbe747b096d45.tar.xz | |
database/sql: fix Conn's doc typo
Fixes #21798
Change-Id: Ided31a8b22c220acdeb3938cac41ce8db9a110c3
Reviewed-on: https://go-review.googlesource.com/62290
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
Diffstat (limited to 'src/database')
| -rw-r--r-- | src/database/sql/sql.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/sql.go b/src/database/sql/sql.go index c609fe4cc4..8d506385ff 100644 --- a/src/database/sql/sql.go +++ b/src/database/sql/sql.go @@ -1493,7 +1493,7 @@ func (db *DB) Conn(ctx context.Context) (*Conn, error) { type releaseConn func(error) -// Conn represents a single database session rather a pool of database +// Conn represents a single database session rather than a pool of database // sessions. Prefer running queries from DB unless there is a specific // need for a continuous single database session. // |
