Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79479 - trunk/libs/conversion/doc
From: antoshkka_at_[hidden]
Date: 2012-07-13 15:20:06


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

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

Modified: trunk/libs/conversion/doc/lexical_cast.qbk
==============================================================================
--- trunk/libs/conversion/doc/lexical_cast.qbk (original)
+++ trunk/libs/conversion/doc/lexical_cast.qbk 2012-07-13 15:20:05 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