diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-22 16:19:13 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-22 16:19:13 +0000 |
commit | e7afe2458ed03e907601cd3c05dc5f253f824d88 (patch) | |
tree | 1cf245de79837f358de6939d44df9f2a2d54fd01 /app/sql/transaction.cc | |
parent | ac1894aec051033fc13bc41e1399ac05f5df3cc6 (diff) | |
download | chromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.zip chromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.tar.gz chromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.tar.bz2 |
Spelling correction: "nonexistant" -> "nonexistent".
BUG=none
TEST=good spellers are slightly happier
Review URL: http://codereview.chromium.org/3143037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/sql/transaction.cc')
-rw-r--r-- | app/sql/transaction.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/sql/transaction.cc b/app/sql/transaction.cc index 79a198b..10bcfb0 100644 --- a/app/sql/transaction.cc +++ b/app/sql/transaction.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. @@ -30,7 +30,7 @@ bool Transaction::Begin() { void Transaction::Rollback() { if (!is_open_) { - NOTREACHED() << "Attempting to roll back a nonexistant transaction. " + NOTREACHED() << "Attempting to roll back a nonexistent transaction. " << "Did you remember to call Begin() and check its return?"; return; } @@ -40,7 +40,7 @@ void Transaction::Rollback() { bool Transaction::Commit() { if (!is_open_) { - NOTREACHED() << "Attempting to commit a nonexistant transaction. " + NOTREACHED() << "Attempting to commit a nonexistent transaction. " << "Did you remember to call Begin() and check its return?"; return false; } |