Doc update

pull/146/head
William King 2016-05-18 15:08:09 -07:00
parent 682e688c5b
commit a0d005a993
1 changed files with 1 additions and 1 deletions

2
tx.go
View File

@ -136,7 +136,7 @@ func (tx *Tx) Prepare(name, sql string) (*PreparedStatement, error) {
return tx.conn.Prepare(name, sql)
}
// Prepare delegates to the underlying *Conn
// Preparex delegates to the underlying *Conn
func (tx *Tx) Preparex(name, sql string, opts PreparexOptions) (*PreparedStatement, error) {
if tx.status != TxStatusInProgress {
return nil, ErrTxClosed