$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82821 - branches/release/libs/utility/doc
From: marshall_at_[hidden]
Date: 2013-02-11 11:22:32
Author: marshall
Date: 2013-02-11 11:22:32 EST (Mon, 11 Feb 2013)
New Revision: 82821
URL: http://svn.boost.org/trac/boost/changeset/82821
Log:
Merge doc typo; Fixes #8002
Properties modified: 
   branches/release/libs/utility/doc/string_ref.qbk   (contents, props changed)
Text files modified: 
   branches/release/libs/utility/doc/string_ref.qbk |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/libs/utility/doc/string_ref.qbk
==============================================================================
--- branches/release/libs/utility/doc/string_ref.qbk	(original)
+++ branches/release/libs/utility/doc/string_ref.qbk	2013-02-11 11:22:32 EST (Mon, 11 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.