diff --git a/doc/Attic/match_flag_type.html b/doc/Attic/match_flag_type.html
index fec767e4..29d226cb 100644
--- a/doc/Attic/match_flag_type.html
+++ b/doc/Attic/match_flag_type.html
@@ -180,10 +180,11 @@ static const match_flag_type format_all;
match_single_line |
- Equivalent to Perl's s/ modifier; prevents ^ from
- matching after an embedded newline character (so that it only matches at the
- start of the text being matched), and $ from matching before an embedded
- newline (so that it only matches at the end of the text being matched). |
+ Equivalent to the inverse of Perl's m/ modifier;
+ prevents ^ from matching after an embedded newline character (so that it only
+ matches at the start of the text being matched), and $ from matching before an
+ embedded newline (so that it only matches at the end of the text being
+ matched). |
@@ -198,7 +199,7 @@ static const match_flag_type format_all;
|
match_not_dot_newline |
Specifies that the expression "." does not match a
- newline character. |
+ newline character. This is the inverse of Perl's s/ modifier.
match_not_dot_null |
@@ -283,4 +284,3 @@ static const match_flag_type format_all;
or copy at http://www.boost.org/LICENSE_1_0.txt)