From a0d005a9935ad6c66abd3851f85c79b8cb260d97 Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 18 May 2016 15:08:09 -0700 Subject: [PATCH] Doc update --- tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tx.go b/tx.go index a90b27a5..2882aa13 100644 --- a/tx.go +++ b/tx.go @@ -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