Skip to content

Commit

Permalink
Don't gate feature documentation on docs.rs, we're on nightly anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnatsel authored Jul 17, 2024
1 parent 35f2900 commit 379f031
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ macro_rules! impl_fft_interleaved_for {
};
}

#[cfg_attr(ddocsrs, doc(cfg(feature = "complex-nums")))]
#[doc(cfg(feature = "complex-nums"))]
#[cfg(feature = "complex-nums")]
impl_fft_interleaved_for!(fft_32_interleaved, f32, fft_32, deinterleave_complex32);
#[cfg_attr(docsrs, doc(cfg(feature = "complex-nums")))]
#[doc(cfg(feature = "complex-nums"))]
#[cfg(feature = "complex-nums")]
impl_fft_interleaved_for!(fft_64_interleaved, f64, fft_64, deinterleave_complex64);

Expand Down

0 comments on commit 379f031

Please sign in to comment.