Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79480 - branches/release/libs/conversion/doc
From: antoshkka_at_[hidden]
Date: 2012-07-13 15:22:50


Author: apolukhin
Date: 2012-07-13 15:22:49 EDT (Fri, 13 Jul 2012)
New Revision: 79480
URL: http://svn.boost.org/trac/boost/changeset/79480

Log:
Fix typo in documentation (fixes #7129)
Text files modified:
   branches/release/libs/conversion/doc/lexical_cast.qbk | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/release/libs/conversion/doc/lexical_cast.qbk
==============================================================================
--- branches/release/libs/conversion/doc/lexical_cast.qbk (original)
+++ branches/release/libs/conversion/doc/lexical_cast.qbk 2012-07-13 15:22:49 EDT (Fri, 13 Jul 2012)
@@ -114,12 +114,12 @@
 * `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>`
 
-[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
- << 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();
 ``
 ]
 


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