From fe79553bf89b8bb4e77ccbaa6efc9370c6a41588 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sun, 8 Jul 2012 17:59:50 +0000 Subject: [PATCH] Fix tab in documentation (refs #7065) [SVN r79363] --- 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 a6be817..59309d2 100644 --- a/doc/lexical_cast.qbk +++ b/doc/lexical_cast.qbk @@ -75,7 +75,7 @@ Following example converts some number and puts it to file: int i; FILE* file; ... - typedef boost::array buf_t; // You can use std::array if your compiler supports it + typedef boost::array buf_t; // You can use std::array if your compiler supports it buf_t buffer = boost::lexical_cast(i); // No dynamic memory allocation puts(buffer.begin(), file); ``