From 59510a85d14855e718678d7c56c2dbbb33a094ef Mon Sep 17 00:00:00 2001 From: Sebastian Jung Date: Wed, 4 Dec 2019 17:13:21 +0100 Subject: [PATCH] fix build warnings --- src/commands.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.rs b/src/commands.rs index c46862bed7..899ac967c0 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -60,8 +60,8 @@ pub(crate) mod post; pub(crate) mod prepend; pub(crate) mod prev; pub(crate) mod pwd; -#[allow(unused)] pub(crate) mod range; +#[allow(unused)] pub(crate) mod reduce_by; pub(crate) mod reject; pub(crate) mod reverse; @@ -150,8 +150,8 @@ pub(crate) use post::Post; pub(crate) use prepend::Prepend; pub(crate) use prev::Previous; pub(crate) use pwd::PWD; -#[allow(unused)] pub(crate) use range::Range; +#[allow(unused)] pub(crate) use reduce_by::ReduceBy; pub(crate) use reject::Reject; pub(crate) use reverse::Reverse;