|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r82149 - trunk/libs/locale/examples
From: artyomtnk_at_[hidden]
Date: 2012-12-21 09:04:19
Author: artyom
Date: 2012-12-21 09:04:18 EST (Fri, 21 Dec 2012)
New Revision: 82149
URL: http://svn.boost.org/trac/boost/changeset/82149
Log:
Closing ticket #7368, fixed typo
Text files modified:
trunk/libs/locale/examples/conversions.cpp | 2 +-
trunk/libs/locale/examples/wconversions.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/locale/examples/conversions.cpp
==============================================================================
--- trunk/libs/locale/examples/conversions.cpp (original)
+++ trunk/libs/locale/examples/conversions.cpp 2012-12-21 09:04:18 EST (Fri, 21 Dec 2012)
@@ -33,7 +33,7 @@
cout<<" Greek á½ÎΥΣΣÎÎΣ is correctly converted to "<<to_lower("á½ÎΥΣΣÎÎΣ")<<", instead of incorrect "
<<boost::to_lower_copy(std::string("á½ÎΥΣΣÎÎΣ"))<<endl;
cout<<" where Σ is converted to Ï or to Ï, according to position in the word"<<endl;
- cout<<"Such type of conversion just can be done using std::toupper that work on character base, also std::toupper is "<<endl;
+ cout<<"Such type of conversion just can't be done using std::toupper that work on character base, also std::toupper is "<<endl;
cout<<"not even applicable when working with variable character length like in UTF-8 or UTF-16 limiting the correct "<<endl;
cout<<"behavior to unicode subset BMP or ASCII only"<<endl;
Modified: trunk/libs/locale/examples/wconversions.cpp
==============================================================================
--- trunk/libs/locale/examples/wconversions.cpp (original)
+++ trunk/libs/locale/examples/wconversions.cpp 2012-12-21 09:04:18 EST (Fri, 21 Dec 2012)
@@ -62,7 +62,7 @@
wcout<<L" Greek á½ÎΥΣΣÎÎΣ is correctly converted to "<<to_lower(L"á½ÎΥΣΣÎÎΣ")<<L", instead of incorrect "
<<boost::to_lower_copy(std::wstring(L"á½ÎΥΣΣÎÎΣ"))<<endl;
wcout<<L" where Σ is converted to Ï or to Ï, according to position in the word"<<endl;
- wcout<<L"Such type of conversion just can be done using std::toupper that work on character base, also std::toupper is "<<endl;
+ wcout<<L"Such type of conversion just can't be done using std::toupper that work on character base, also std::toupper is "<<endl;
wcout<<L"not fully applicable when working with variable character length like in UTF-8 or UTF-16 limiting the correct "<<endl;
wcout<<L"behavoir to BMP or ASCII only"<<endl;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk