Update any_range.qbk

Fix typo in the name of forward traversal tag.
This commit is contained in:
Adam Romanek 2014-05-07 09:39:00 +02:00
parent 4ec54072d3
commit ac99249c89

View 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