From c8a2e8b2b69996311d63a6da0b41e482f8d4c09e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffan=20S=C3=B8lvsten?= <201505832@post.au.dk> Date: Wed, 27 Jul 2022 11:26:00 +0200 Subject: [PATCH] Fix documentation on 'exclude_lambda' has the placements swapped --- tpie/pipelining/std_glue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tpie/pipelining/std_glue.h b/tpie/pipelining/std_glue.h index b1a9ee207..e4057f92f 100644 --- a/tpie/pipelining/std_glue.h +++ b/tpie/pipelining/std_glue.h @@ -157,8 +157,8 @@ inline pipe_middle, F> > lambda(const F & f) { /// \brief Pipelining nodes that applies to given functor to items in /// the stream. The functor should have a typedef named argument_type /// that is the type of the argument given to the call operator. It is required -/// that the functor returns a pair. The first item should be a boolean -/// indicating whether the item should be pushed to the next node. The second +/// that the functor returns a pair. The second item should be a boolean +/// indicating whether the item should be pushed to the next node. The first /// should be the value itself. /// \param f The functor that should be applied to items ///////////////////////////////////////////////////////////////////////////////