Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / range / doc / reference / ranges / any_range.qbk
index 6ff224e..1888ed8 100644 (file)
@@ -7,7 +7,7 @@
 
 [heading Description]
 
-`any_range` is a range that has the type information erased hence a `any_range<int, boost::forward_pass_traversal_tag, int, std::ptrdiff_t>`
+`any_range` is a range that has the type information erased hence a `any_range<int, boost::forward_traversal_tag, int, std::ptrdiff_t>`
 can be used to represent a `std::vector<int>`, a `std::list<int>` or many other types.
 
 The __type_erasure_article__ covers the motivation and goals of type erasure in this context. Clearly