From e6c4fa58b5a0c77c9c95d227ed5f36937df0544d Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Tue, 29 Oct 2013 16:03:13 -0700 Subject: [PATCH] database/sql: Fix typos in doc R=golang-dev CC=bradfitz, golang-dev https://golang.org/cl/17590043 --- src/pkg/database/sql/driver/driver.go | 4 ++-- src/pkg/database/sql/sql.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkg/database/sql/driver/driver.go b/src/pkg/database/sql/driver/driver.go index d7ca94f780..0828e63c65 100644 --- a/src/pkg/database/sql/driver/driver.go +++ b/src/pkg/database/sql/driver/driver.go @@ -140,8 +140,8 @@ type Stmt interface { } // ColumnConverter may be optionally implemented by Stmt if the -// the statement is aware of its own columns' types and can -// convert from any type to a driver Value. +// statement is aware of its own columns' types and can convert from +// any type to a driver Value. type ColumnConverter interface { // ColumnConverter returns a ValueConverter for the provided // column index. If the type of a specific column isn't known 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 -- 2.50.0