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(); `` ]