$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82771 - trunk/libs/utility/doc
From: marshall_at_[hidden]
Date: 2013-02-07 09:14:54
Author: marshall
Date: 2013-02-07 09:14:53 EST (Thu, 07 Feb 2013)
New Revision: 82771
URL: http://svn.boost.org/trac/boost/changeset/82771
Log:
Fixed typo; Refs #8002
Text files modified: 
   trunk/libs/utility/doc/string_ref.qbk |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/utility/doc/string_ref.qbk
==============================================================================
--- trunk/libs/utility/doc/string_ref.qbk	(original)
+++ trunk/libs/utility/doc/string_ref.qbk	2013-02-07 09:14:53 EST (Thu, 07 Feb 2013)
@@ -54,7 +54,7 @@
         return bar.substr ( 2, 3 );
         }
         
-    if ( extract_part ( "ABCDEFG" ).front() == "C" ) { /* do something */ }
+    if ( extract_part ( "ABCDEFG" ).front() == 'C' ) { /* do something */ }
     
 Let's figure out what happens in this (contrived) example.