From 81b7d378f735bb88b0f6101ab4f3fb08f6d88261 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 22 Nov 2010 18:38:27 +0000 Subject: [PATCH] Make comment language more consistent. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@148 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- include/cef_string_wrappers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cef_string_wrappers.h b/include/cef_string_wrappers.h index 37b5d3633..c7631b628 100644 --- a/include/cef_string_wrappers.h +++ b/include/cef_string_wrappers.h @@ -593,7 +593,7 @@ private: // CEF string classes can convert between all supported string types. For // example, the CefStringWide class uses wchar_t as the underlying character -// type and provides two approaches for translating data to/from a UTF8 string +// type and provides two approaches for converting data to/from a UTF8 string // (std::string). // // 1. Implicit conversion using the assignment operator overload. @@ -610,9 +610,9 @@ private: // aCefString.FromString(aUTF8String); // Assign std::string to CefStringWide // aUTF8String = aCefString.ToString(); // Assign CefStringWide to std::string // -// Translation will only occur if the assigned value is a different string type. +// Conversion will only occur if the assigned value is a different string type. // Assigning a std::string to a CefStringUTF8, for example, will copy the data -// without performing a translation. +// without performing a conversion. // // CEF string classes are safe for reading from multiple threads but not for // modification. It is the user's responsibility to provide synchronization if