diff --git a/string/doc/Jamfile.v2 b/string/doc/Jamfile.v2
index be42d64..ac3a43b 100644
--- a/string/doc/Jamfile.v2
+++ b/string/doc/Jamfile.v2
@@ -31,6 +31,7 @@ doxygen autodoc
[ glob ../../../../boost/algorithm/string/trim.hpp ]
[ glob ../../../../boost/algorithm/string/predicate.hpp ]
[ glob ../../../../boost/algorithm/string/split.hpp ]
+ [ glob ../../../../boost/algorithm/string/iter_find.hpp ]
[ glob ../../../../boost/algorithm/string/erase.hpp ]
[ glob ../../../../boost/algorithm/string/join.hpp ]
[ glob ../../../../boost/algorithm/string/replace.hpp ]
diff --git a/string/doc/quickref.xml b/string/doc/quickref.xml
index 0972893..3c65ae2 100644
--- a/string/doc/quickref.xml
+++ b/string/doc/quickref.xml
@@ -151,7 +151,7 @@
lexicographical_compare
- Check if a string is lexicographicaly less then another one
+ Check if a string is lexicographically less then another one
lexicographical_compare()
@@ -434,7 +434,7 @@
find_all_regex()
-
+
split
Split input into parts
@@ -442,7 +442,21 @@
split_regex()
-
+
+
+ iter_find
+ Iteratively apply the finder to the input to find all matching substrings
+
+ iter_find()
+
+
+
+ iter_split
+ Use the finder to find matching substrings in the input and use them as separators to split the input into parts
+
+ iter_split()
+
+
diff --git a/string/doc/release_notes.xml b/string/doc/release_notes.xml
index b60b74b..b40504b 100644
--- a/string/doc/release_notes.xml
+++ b/string/doc/release_notes.xml
@@ -8,6 +8,10 @@
-->
+
+
+
+
Release Notes
@@ -19,5 +23,23 @@
1.33
Internal version of collection traits removed, library adapted to Boost.Range
+
+ 1.34
+
+
+ lexicographical_compare()
+
+
+ join() and join_if()
+
+
+ New comparison predicates is_less
, is_not_greater
+
+
+ Negative indexes support (like Perl) in various algorihtms
+ (*_head/tail
, *_nth
).
+
+
+