From d1ef9b56fbc5bde31c429f4eab77854ef6eef662 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Wed, 19 Dec 2012 03:04:09 +0800 Subject: all: fix typos caught by https://github.com/lyda/misspell-check. R=golang-dev, gri CC=golang-dev https://golang.org/cl/6949072 --- src/pkg/database/sql/sql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/database/sql') diff --git a/src/pkg/database/sql/sql.go b/src/pkg/database/sql/sql.go index e59d0130d5..e7c7780ef2 100644 --- a/src/pkg/database/sql/sql.go +++ b/src/pkg/database/sql/sql.go @@ -266,7 +266,7 @@ func (db *DB) connIfFree(wanted driver.Conn) (conn driver.Conn, ok bool) { var putConnHook func(*DB, driver.Conn) // putConn adds a connection to the db's free pool. -// err is optionally the last error that occured on this connection. +// err is optionally the last error that occurred on this connection. func (db *DB) putConn(c driver.Conn, err error) { if err == driver.ErrBadConn { // Don't reuse bad connections. -- cgit v1.3