From 6ad3d4248263a9ebf97220a37b885af910177863 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 14 Jun 2017 12:20:31 +0300 Subject: [PATCH] software: fix typo in #[cfg] --- src/software/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/software/mod.rs b/src/software/mod.rs index da9371d..470e0c5 100644 --- a/src/software/mod.rs +++ b/src/software/mod.rs @@ -22,7 +22,7 @@ pub fn converter((width, height): (u32, u32), #[cfg(feature = "software-resampling")] pub mod resampling; -#[cfg(feature = "softare-resampling")] +#[cfg(feature = "software-resampling")] #[inline] pub fn resampler((in_format, in_layout, in_rate): (::format::Sample, ::ChannelLayout, u32), (out_format, out_layout, out_rate): (::format::Sample, ::ChannelLayout, u32))