diff --git a/doc/mp11/algorithm.adoc b/doc/mp11/algorithm.adoc index beecbe8..15a68e1 100644 --- a/doc/mp11/algorithm.adoc +++ b/doc/mp11/algorithm.adoc @@ -114,10 +114,10 @@ using R1 = mp_transform_if; |=== |*L1*|A~1~|A~2~|...|A~n~ 5+| -|*P*|mp_false|mp_true|...|mp_false -5+| |*L2*|B~1~|B~2~|...|B~n~ 5+| +|*P*|mp_false|mp_true|...|mp_false +5+| |*mp_transform_if*|A~1~|F|...|A~n~ |=== @@ -142,10 +142,10 @@ using R1 = mp_transform_if_q, _2, L1, L2>; |=== |*L1*|A~1~|A~2~|...|A~n~ 5+| -|*Qp::fn*|mp_false|mp_true|...|mp_false -5+| |*L2*|B~1~|B~2~|...|B~n~ 5+| +|*Qp::fn*|mp_false|mp_true|...|mp_false +5+| |*mp_transform_if_q*|A~1~|B~2~|...|A~n~ |=== @@ -163,7 +163,7 @@ See also `mp_copy_if` and `mp_remove_if`, less general variants of `mp_filter` t template using mp_filter_q = mp_filter; -As `mp_filter`, but takes quoted metafunctions. +As `mp_filter`, but takes a quoted metafunction. .Using mp_filter_q to pick elements of a list based on a mask in another list ```