aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/partition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/partition.h')
-rw-r--r--src/list/operation/higher/partition.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/list/operation/higher/partition.h b/src/list/operation/higher/partition.h
index a0ea379..aed0ea6 100644
--- a/src/list/operation/higher/partition.h
+++ b/src/list/operation/higher/partition.h
@@ -7,11 +7,11 @@ namespace tav {
template <
template<typename> class Predicate,
- typename List
+ typename Elements
>
using Partition = Cons<
- typename Filter<Predicate, List>::type,
- typename Remove<Predicate, List>::type
+ typename Filter<Predicate, Elements>::type,
+ typename Remove<Predicate, Elements>::type
>;
}