From 40cb8e0cc19c8b2d192a1d62389cc0da34725fea Mon Sep 17 00:00:00 2001 From: "gavinp@chromium.org" Date: Mon, 2 Apr 2012 10:35:44 +0000 Subject: 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 --- base/sys_string_conversions_posix.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/sys_string_conversions_posix.cc') 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. -- cgit v1.1