diff options
author | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-02 10:35:44 +0000 |
---|---|---|
committer | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-02 10:35:44 +0000 |
commit | 40cb8e0cc19c8b2d192a1d62389cc0da34725fea (patch) | |
tree | c1d32a8b270dd3ab995c7a7a4687afab7bb061a7 /base/sys_string_conversions_posix.cc | |
parent | 0547347170e85f1954f6905bb4537039757f1e30 (diff) | |
download | chromium_src-40cb8e0cc19c8b2d192a1d62389cc0da34725fea.zip chromium_src-40cb8e0cc19c8b2d192a1d62389cc0da34725fea.tar.gz chromium_src-40cb8e0cc19c8b2d192a1d62389cc0da34725fea.tar.bz2 |
Fix some grammatical errors in base/
BUG=None
Review URL: http://codereview.chromium.org/9854040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130117 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/sys_string_conversions_posix.cc')
-rw-r--r-- | base/sys_string_conversions_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/sys_string_conversions_posix.cc b/base/sys_string_conversions_posix.cc index f46259d..a2bf52a 100644 --- a/base/sys_string_conversions_posix.cc +++ b/base/sys_string_conversions_posix.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -79,7 +79,7 @@ std::string SysWideToNativeMB(const std::wstring& wide) { memset(&ps, 0, sizeof(ps)); for (size_t i = 0, j = 0; i < wide.size(); ++i) { const wchar_t src = wide[i]; - // We don't want wcrtomb to do it's funkiness for embedded NULLs. + // We don't want wcrtomb to do its funkiness for embedded NULLs. size_t res = src ? wcrtomb(&out[j], src, &ps) : 0; switch (res) { // Handle any errors and return an empty string. |