Boost logo

Boost-Commit :

From: eric_at_[hidden]
Date: 2007-10-08 11:57:04


Author: eric_niebler
Date: 2007-10-08 11:57:04 EDT (Mon, 08 Oct 2007)
New Revision: 39787
URL: http://svn.boost.org/trac/boost/changeset/39787

Log:
doc tweaks
Text files modified:
   trunk/libs/xpressive/doc/acknowledgements.qbk | 3 ++-
   trunk/libs/xpressive/doc/history.qbk | 7 ++++---
   trunk/libs/xpressive/doc/traits.qbk | 2 +-
   3 files changed, 7 insertions(+), 5 deletions(-)

Modified: trunk/libs/xpressive/doc/acknowledgements.qbk
==============================================================================
--- trunk/libs/xpressive/doc/acknowledgements.qbk (original)
+++ trunk/libs/xpressive/doc/acknowledgements.qbk 2007-10-08 11:57:04 EDT (Mon, 08 Oct 2007)
@@ -18,7 +18,8 @@
 regarding the behavior of nested regex objects, and
 [@http://boost.org/people/dave_abrahams.htm Dave Abrahams] for his suggestions
 regarding the regex domain-specific embedded language. Noel Belcourt helped
-porting xpressive to the Metrowerks CodeWarrior compiler.
+porting xpressive to the Metrowerks CodeWarrior compiler. Markus Schöpflin
+helped to track down a bug on HP Tru64.
 
 I would also like to thank
 [@http://boost.org/people/thomas_witt.html Thomas Witt] for acting as

Modified: trunk/libs/xpressive/doc/history.qbk
==============================================================================
--- trunk/libs/xpressive/doc/history.qbk (original)
+++ trunk/libs/xpressive/doc/history.qbk 2007-10-08 11:57:04 EDT (Mon, 08 Oct 2007)
@@ -13,12 +13,13 @@
 
 * Semantic actions
 * Custom assertions
-* Better errors for invalid static regexes
-* Dynamic regex grammars
 * Named captures
+* Dynamic regex grammars
 * Recursive dynamic regexes with [^(?R)] construct
+* Support for searching non-character data
+* Better errors for invalid static regexes
 * Range-based regex algorithm interface
-* `format_perl`, `format_sed`, and `format_all`
+* `match_flag_type::format_perl`, `match_flag_type::format_sed`, and `match_flag_type::format_all`
 * `operator+(std::string, sub_match<>)` and variants
 * Version 2 regex traits get `tolower()` and `toupper()`
 

Modified: trunk/libs/xpressive/doc/traits.qbk
==============================================================================
--- trunk/libs/xpressive/doc/traits.qbk (original)
+++ trunk/libs/xpressive/doc/traits.qbk 2007-10-08 11:57:04 EDT (Mon, 08 Oct 2007)
@@ -53,7 +53,7 @@
   cpp_regex_traits<char> cpptraits(loc);
   sregex cpprx1 = imbue(cpptraits)( +_w );
 
- // A sharthand for above
+ // A shorthand for above
   sregex cpprx2 = imbue(loc)( +_w );
 
 The `imbue()` pattern modifier must wrap the entire pattern. It is an error to `imbue` only


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk