From ac99249c891c843a7193cc147818a630216e71dc Mon Sep 17 00:00:00 2001 From: Adam Romanek Date: Wed, 7 May 2014 09:39:00 +0200 Subject: [PATCH] Update any_range.qbk Fix typo in the name of forward traversal tag. --- doc/reference/ranges/any_range.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/reference/ranges/any_range.qbk b/doc/reference/ranges/any_range.qbk index 6ff224e..1888ed8 100644 --- a/doc/reference/ranges/any_range.qbk +++ b/doc/reference/ranges/any_range.qbk @@ -7,7 +7,7 @@ [heading Description] -`any_range` is a range that has the type information erased hence a `any_range` +`any_range` is a range that has the type information erased hence a `any_range` can be used to represent a `std::vector`, a `std::list` or many other types. The __type_erasure_article__ covers the motivation and goals of type erasure in this context. Clearly