summaryrefslogtreecommitdiffstats
path: root/app/sql/connection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'app/sql/connection.cc')
-rw-r--r--app/sql/connection.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/sql/connection.cc b/app/sql/connection.cc
index 62ebfaf..c5f991f 100644
--- a/app/sql/connection.cc
+++ b/app/sql/connection.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -122,7 +122,7 @@ bool Connection::BeginTransaction() {
void Connection::RollbackTransaction() {
if (!transaction_nesting_) {
- NOTREACHED() << "Rolling back a nonexistant transaction";
+ NOTREACHED() << "Rolling back a nonexistent transaction";
return;
}
@@ -139,7 +139,7 @@ void Connection::RollbackTransaction() {
bool Connection::CommitTransaction() {
if (!transaction_nesting_) {
- NOTREACHED() << "Rolling back a nonexistant transaction";
+ NOTREACHED() << "Rolling back a nonexistent transaction";
return false;
}
transaction_nesting_--;