From 5ebb13bbad64b7e2e2b44e7ca6593d0b81e13961 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Fri, 12 Aug 2011 17:08:17 +0000 Subject: [PATCH] Very small update for FAQ section of documentation [SVN r73706] --- doc/lexical_cast.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lexical_cast.qbk b/doc/lexical_cast.qbk index 360534a..9fb6cdf 100644 --- a/doc/lexical_cast.qbk +++ b/doc/lexical_cast.qbk @@ -130,7 +130,7 @@ call __numericcast__: * [*Answer:] Lexical conversion to any char type is simply reading a byte from source. But since the source has more than one byte, the exception is thrown. Please use other integer types such as `int` or `short int`. If bounds checking is important, you can also call __numericcast__: -`numeric_cast(lexical_cast("127"));` +`numeric_cast(lexical_cast("127"));` [pre ]