From 80d480ca0b924575dcf4458053af7d0cc46cff2c Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Fri, 13 Jul 2012 19:22:49 +0000 Subject: [PATCH] Fix typo in documentation (fixes #7129) [SVN r79480] --- doc/lexical_cast.qbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/lexical_cast.qbk b/doc/lexical_cast.qbk index 59309d2..eb7ba21 100644 --- a/doc/lexical_cast.qbk +++ b/doc/lexical_cast.qbk @@ -114,12 +114,12 @@ The character type of the underlying stream is assumed to be `char` unless eithe * `boost::iterator_range`, where `WideCharPtr` is a pointer to wide-character or pointer to const wide-character * `boost::array` and `std::array`, `boost::array` and `std::array` -[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(1.0).size() + << boost::lexical_cast(1.0).size() << " " - << booat::lexical_cast(1.0).size(); + << boost::lexical_cast(1.0).size(); `` ]