diff --git a/string/doc/Jamfile.v2 b/string/doc/Jamfile.v2
index 13e0df3..f402ba4 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()
+
+