Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2631)

Unified Diff: base/sys_string_conversions_posix.cc

Issue 9854040: Fix some grammatical errors in base/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove the incorrect fix I made (three out of four ain't bad?) Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/process_util_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sys_string_conversions_posix.cc
diff --git a/base/sys_string_conversions_posix.cc b/base/sys_string_conversions_posix.cc
index f46259da85f245d464ea2301b97533e20207d05b..17ea896067313cdf7d96531958af0a36ebcadff2 100644
--- a/base/sys_string_conversions_posix.cc
+++ b/base/sys_string_conversions_posix.cc
@@ -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.
« no previous file with comments | « base/process_util_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698