Merge pull request #9 from romanek-adam/patch-1

[doc] Fix typo in the name of forward traversal tag.
This commit is contained in:
Nathan Ridge 2014-05-07 11:42:43 -04:00
commit 698a083e65

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