Skip to content

Commit

Permalink
Fix docsrs config according to Clippy
Browse files Browse the repository at this point in the history
tbh not sure if Clippy is right in this case
  • Loading branch information
Shnatsel authored Jul 17, 2024
1 parent 385a9f9 commit 0a20be5
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(docs_rs, doc(cfg(feature = "complex-nums")))]
#[cfg_attr(ddocsrs, doc(cfg(feature = "complex-nums")))]

Check failure on line 93 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Clippy

unexpected `cfg` condition name: `ddocsrs`

Check warning on line 93 in src/lib.rs

View workflow job for this annotation

GitHub Actions / Test

unexpected `cfg` condition name: `ddocsrs`
#[cfg(feature = "complex-nums")]
impl_fft_interleaved_for!(fft_32_interleaved, f32, fft_32, deinterleave_complex32);
#[cfg_attr(docs_rs, doc(cfg(feature = "complex-nums")))]
#[cfg_attr(docsrs, 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 0a20be5

Please sign in to comment.