diff --git a/doc/iterator-categories.html b/doc/iterator-categories.html index 2622197..2c3b70e 100644 --- a/doc/iterator-categories.html +++ b/doc/iterator-categories.html @@ -39,9 +39,9 @@ iterator categories.

Because of the mixing of iterator traversal and dereference return type, many useful iterators can not be appropriately categorized. For example, vector<bool>::iterator is almost a random access iterator, but -the return type is not bool& (see issue -96 and Herb Sutter's paper J16/99-0008 = WG21 N1185). Therefore, the +the return type is not bool& (see +issue 96 +and Herb Sutter's paper J16/99-0008 = WG21 N1185). Therefore, the iterators only meet the requirements of input iterator and output iterator. This is so nonintuitive that at least one implementation erroneously assigns random_access_iterator_tag as its iterator_category. Also,