Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
e6c4fa58
Commit
e6c4fa58
authored
Oct 29, 2013
by
Julien Schmidt
Committed by
Brad Fitzpatrick
Oct 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
database/sql: Fix typos in doc
R=golang-dev CC=bradfitz, golang-dev
https://golang.org/cl/17590043
parent
2ee03b5e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
driver.go
src/pkg/database/sql/driver/driver.go
+2
-2
sql.go
src/pkg/database/sql/sql.go
+1
-1
No files found.
src/pkg/database/sql/driver/driver.go
View file @
e6c4fa58
...
...
@@ -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
...
...
src/pkg/database/sql/sql.go
View file @
e6c4fa58
...
...
@@ -201,7 +201,7 @@ type DB struct {
connRequests
*
list
.
List
// of connRequest
numOpen
int
pendingOpens
int
// Used to s
y
gnal the need for new connections
// Used to s
i
gnal 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment