From 7e065ca313b1c1b18704a2871eb7542f7435ff02 Mon Sep 17 00:00:00 2001 From: Neil Groves Date: Wed, 28 Apr 2010 19:16:28 +0000 Subject: [PATCH] Boost.Range corrected dodgy link in the Uniqued adaptor documentation. [SVN r61661] --- doc/html/range/reference/adaptors/reference/uniqued.html | 2 +- doc/reference/adaptors/uniqued.qbk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/html/range/reference/adaptors/reference/uniqued.html b/doc/html/range/reference/adaptors/reference/uniqued.html index bc7d2f0..65fdc6e 100644 --- a/doc/html/range/reference/adaptors/reference/uniqued.html +++ b/doc/html/range/reference/adaptors/reference/uniqued.html @@ -89,7 +89,7 @@
  • Returned Range Category: The minimum of the range concept of rng - and __forward_passrange_. + and Forward Range.
  • diff --git a/doc/reference/adaptors/uniqued.qbk b/doc/reference/adaptors/uniqued.qbk index 8bcb629..b7565a0 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_pass_range__. +* [*Returned Range Category:] The minimum of the range concept of `rng` and __forward_range__. [section:uniqued_example uniqued example] ``