Commit 06572356 authored by Tobias Klauser's avatar Tobias Klauser Committed by Tobias Klauser

database/sql: fix typo in comment

Change-Id: Ie2966bae1dc2e542c42fb32d8059a4b2d4690014
Reviewed-on: https://go-review.googlesource.com/99115Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 93b0261d
...@@ -1940,7 +1940,7 @@ func (tx *Tx) closePrepared() { ...@@ -1940,7 +1940,7 @@ func (tx *Tx) closePrepared() {
// Commit commits the transaction. // Commit commits the transaction.
func (tx *Tx) Commit() error { func (tx *Tx) Commit() error {
// Check context first to avoid transaction leak. // Check context first to avoid transaction leak.
// If put it behind tx.done CompareAndSwap statement, we cant't ensure // If put it behind tx.done CompareAndSwap statement, we can't ensure
// the consistency between tx.done and the real COMMIT operation. // the consistency between tx.done and the real COMMIT operation.
select { select {
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment