$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59131 - trunk/libs/spirit/example/qi
From: hartmut.kaiser_at_[hidden]
Date: 2010-01-18 12:26:26
Author: hkaiser
Date: 2010-01-18 12:26:26 EST (Mon, 18 Jan 2010)
New Revision: 59131
URL: http://svn.boost.org/trac/boost/changeset/59131
Log:
Spirit: fixed violation reported by inspect 
Text files modified: 
   trunk/libs/spirit/example/qi/key_value_sequence.cpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/spirit/example/qi/key_value_sequence.cpp
==============================================================================
--- trunk/libs/spirit/example/qi/key_value_sequence.cpp	(original)
+++ trunk/libs/spirit/example/qi/key_value_sequence.cpp	2010-01-18 12:26:26 EST (Mon, 18 Jan 2010)
@@ -6,7 +6,7 @@
 // The purpose of this example is to show how to parse arbitrary key/value 
 // pairs delimited by some separator into a std::map. Parsing the URL query 
 // format is the example we use to demonstrate how this can be done 
-// (i.e. things like: key1=value1;key2=value2;
;keyN=valueN).
+// (i.e. things like: key1=value1;key2=value2;...;keyN=valueN).
 //
 // For a more elaborate explanation see here: http://spirit.sourceforge.net/home/?p=371