From 83c89f3038c2ab3779298a526057574a4b648e8d Mon Sep 17 00:00:00 2001 From: Neil Groves Date: Wed, 28 Apr 2010 18:09:41 +0000 Subject: [PATCH] Boost.Range documentation: corrected the Returned Range Category for the uniqued adaptor [SVN r61654] --- doc/html/range/reference/adaptors/reference/uniqued.html | 3 ++- doc/reference/adaptors/uniqued.qbk | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/html/range/reference/adaptors/reference/uniqued.html b/doc/html/range/reference/adaptors/reference/uniqued.html index 65fdc6e..2446ef8 100644 --- a/doc/html/range/reference/adaptors/reference/uniqued.html +++ b/doc/html/range/reference/adaptors/reference/uniqued.html @@ -89,7 +89,8 @@
  • Returned Range Category: The minimum of the range concept of rng - and Forward Range. + and Bidirectional + Range.
  • diff --git a/doc/reference/adaptors/uniqued.qbk b/doc/reference/adaptors/uniqued.qbk index b7565a0..ffb4d14 100644 --- a/doc/reference/adaptors/uniqued.qbk +++ b/doc/reference/adaptors/uniqued.qbk @@ -9,7 +9,7 @@ * [*Precondition:] The `value_type` of the range is comparable with `operator==()`. * [*Postcondition:] For all adjacent elements `[x,y]` in the returned range, `x==y` is false. * [*Range Category:] __forward_range__ -* [*Returned Range Category:] The minimum of the range concept of `rng` and __forward_range__. +* [*Returned Range Category:] The minimum of the range concept of `rng` and __bidirectional_range__. [section:uniqued_example uniqued example] ``