From a2269f447ed93646cf00735d25a23e4ac2e2539c Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 5 Jan 2015 08:23:21 +0900 Subject: [PATCH] Fix requirements documentation of replace_if. --- doc/algorithm.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/algorithm.qbk b/doc/algorithm.qbk index 1a5bf453..915aecba 100644 --- a/doc/algorithm.qbk +++ b/doc/algorithm.qbk @@ -2193,7 +2193,7 @@ Constant. [section replace_if] [heading Description] -Returns the result type of __replace_if__, given the types of the sequence, __poly_func_obj__ predicate and replacement object. +Returns the result type of __replace_if__, given the types of the sequence, unary __mpl_lambda_expression__ predicate and replacement object. [heading Synopsis] template< @@ -2208,7 +2208,7 @@ Returns the result type of __replace_if__, given the types of the sequence, __po [table Parameters [[Parameter][Requirement][Description]] [[`Sequence`][A model of __forward_sequence__][Operation's argument]] - [[`F`][A model of unary __poly_func_obj__][Replacement predicate]] + [[`F`][A model of unary __mpl_lambda_expression__][Replacement predicate]] [[`T`][Any type][The type of the replacement object]] ]