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/connection_unittest.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/connection_unittest.cc')
-rw-r--r-- | app/sql/connection_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/sql/connection_unittest.cc b/app/sql/connection_unittest.cc index 5cd55a7..0a14a9a 100644 --- a/app/sql/connection_unittest.cc +++ b/app/sql/connection_unittest.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. @@ -91,7 +91,7 @@ TEST_F(SQLConnectionTest, DoesStuffExist) { EXPECT_FALSE(db().DoesColumnExist("foo", "bar")); EXPECT_TRUE(db().DoesColumnExist("foo", "a")); - // Testing for a column on a nonexistant table. + // Testing for a column on a nonexistent table. EXPECT_FALSE(db().DoesColumnExist("bar", "b")); } |