From 87f39e93a077bdbf65e5360cf94bb2a6c63790dd Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Mon, 26 Jun 2023 18:48:10 +0200 Subject: [PATCH] Fix range filtered/filter return type in documentation --- doc/reference/adaptors/filtered.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/reference/adaptors/filtered.qbk b/doc/reference/adaptors/filtered.qbk index 4ca3f9163..ec75a4f00 100644 --- a/doc/reference/adaptors/filtered.qbk +++ b/doc/reference/adaptors/filtered.qbk @@ -15,7 +15,7 @@ * [*Postcondition:] For all elements `[x]` in the returned range, `pred(x)` is `true`. * [*Throws:] Whatever the copy constructor of `pred` might throw. * [*Range Category:] __singlepass_range__ -* [*Range Return Type:] `boost::filtered_range` +* [*Range Return Type:] `boost::filtered_range` * [*Returned Range Category:] The minimum of the range category of `rng` and __bidirectional_range__ [section:filtered_example filtered example]