commit | 90244e155a66003fcfd254d3fd9e2e1525ec38b7 | [log] [tgz] |
---|---|---|
author | shess <[email protected]> | Mon Nov 09 22:08:18 2015 |
committer | Commit bot <[email protected]> | Mon Nov 09 22:09:19 2015 |
tree | e3543824596de6e5e2708432bd2f43d132c1d239 | |
parent | de8784cf209f5c254f6c65718373985eb662b36f [diff] [blame] |
[sql] Fix typo in error message. CL https://codereview.chromium.org/1419573008 fixed a typo, but made a typo. BUG=none [email protected] Review URL: https://codereview.chromium.org/1428523007 Cr-Commit-Position: refs/heads/master@{#358673}
diff --git a/sql/connection.cc b/sql/connection.cc index 2bfad2db..185b9551 100644 --- a/sql/connection.cc +++ b/sql/connection.cc
@@ -1285,7 +1285,7 @@ bool Connection::CommitTransaction() { if (!transaction_nesting_) { - DLOG_IF(FATAL, !poisoned_) << "Committing back a nonexistent transaction"; + DLOG_IF(FATAL, !poisoned_) << "Committing a nonexistent transaction"; return false; } transaction_nesting_--;