summaryrefslogtreecommitdiffstats
path: root/chrome/browser/webdata
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-22 16:19:13 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-22 16:19:13 +0000
commite7afe2458ed03e907601cd3c05dc5f253f824d88 (patch)
tree1cf245de79837f358de6939d44df9f2a2d54fd01 /chrome/browser/webdata
parentac1894aec051033fc13bc41e1399ac05f5df3cc6 (diff)
downloadchromium_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 'chrome/browser/webdata')
-rw-r--r--chrome/browser/webdata/web_data_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/webdata/web_data_service.cc b/chrome/browser/webdata/web_data_service.cc
index 63b5da0..b889d10 100644
--- a/chrome/browser/webdata/web_data_service.cc
+++ b/chrome/browser/webdata/web_data_service.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.
@@ -70,7 +70,7 @@ void WebDataService::CancelRequest(Handle h) {
AutoLock l(pending_lock_);
RequestMap::iterator i = pending_requests_.find(h);
if (i == pending_requests_.end()) {
- NOTREACHED() << "Canceling a nonexistant web data service request";
+ NOTREACHED() << "Canceling a nonexistent web data service request";
return;
}
i->second->Cancel();