Fix typo in documentation (fixes #7129)

[SVN r79480]
This commit is contained in:
Antony Polukhin
2012-07-13 19:22:49 +00:00
parent 675d0bb451
commit 80d480ca0b

View File

@@ -114,12 +114,12 @@ The character type of the underlying stream is assumed to be `char` unless eithe
* `boost::iterator_range<WideCharPtr>`, where `WideCharPtr` is a pointer to wide-character or pointer to const wide-character * `boost::iterator_range<WideCharPtr>`, where `WideCharPtr` is a pointer to wide-character or pointer to const wide-character
* `boost::array<CharT, N>` and `std::array<CharT, N>`, `boost::array<const CharT, N>` and `std::array<const CharT, N>` * `boost::array<CharT, N>` and `std::array<CharT, N>`, `boost::array<const CharT, N>` and `std::array<const CharT, N>`
[important Many compilers and runtime libraries fail to make conversions using new Unicode characters. Make shure that the following code compiles and outputs nonzero values, before using new types: [important Many compilers and runtime libraries fail to make conversions using new Unicode characters. Make sure that the following code compiles and outputs nonzero values, before using new types:
`` ``
std::cout std::cout
<< booat::lexical_cast<std::u32string>(1.0).size() << boost::lexical_cast<std::u32string>(1.0).size()
<< " " << " "
<< booat::lexical_cast<std::u16string>(1.0).size(); << boost::lexical_cast<std::u16string>(1.0).size();
`` ``
] ]