Merge pull request #59 from qsib-cbie/bump #1054
GitHub Actions / clippy
failed
Jan 7, 2025 in 0s
clippy
4 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 4 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.83.0 (90b35a623 2024-11-26)
- cargo 1.83.0 (5ffbef321 2024-10-29)
- clippy 0.1.83 (90b35a6 2024-11-26)
Annotations
Check failure on line 48 in sci-rs/src/signal/filter/design/zpk2sos.rs
github-actions / clippy
empty line after doc comment
error: empty line after doc comment
--> sci-rs/src/signal/filter/design/zpk2sos.rs:47:1
|
47 | / ///
48 | |
| |_
49 | #[cfg(feature = "alloc")]
50 | / pub fn zpk2sos_dyn<F>(
51 | | order: usize,
52 | | zpk: ZpkFormatFilter<F>,
53 | | pairing: Option<ZpkPairing>,
... |
56 | | where
57 | | F: RealField + Float + Sum,
| |_______________________________- the comment documents this function
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
= help: if the empty line is unintentional remove it
Check failure on line 46 in sci-rs/src/signal/filter/design/lp2lp_zpk.rs
github-actions / clippy
empty line after doc comment
error: empty line after doc comment
--> sci-rs/src/signal/filter/design/lp2lp_zpk.rs:45:1
|
45 | / /// .. versionadded:: 1.1.0
46 | |
| |_
47 | #[cfg(feature = "alloc")]
48 | / pub fn lp2lp_zpk_dyn<F>(zpk: ZpkFormatFilter<F>, wo: Option<F>) -> ZpkFormatFilter<F>
49 | | where
50 | | F: RealField + Float,
| |_________________________- the comment documents this function
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
= help: if the empty line is unintentional remove it
Check failure on line 62 in sci-rs/src/signal/filter/design/lp2bp_zpk.rs
github-actions / clippy
empty line after doc comment
error: empty line after doc comment
--> sci-rs/src/signal/filter/design/lp2bp_zpk.rs:61:1
|
61 | / /// """
62 | |
| |_
63 | #[cfg(feature = "alloc")]
64 | / pub fn lp2bp_zpk_dyn<F>(zpk: ZpkFormatFilter<F>, wo: Option<F>, bw: Option<F>) -> ZpkFormatFilter<F>
65 | | where
66 | | F: RealField + Float,
| |_________________________- the comment documents this function
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
= help: if the empty line is unintentional remove it
Check failure on line 53 in sci-rs/src/signal/filter/design/cplx.rs
github-actions / clippy
empty line after doc comment
error: empty line after doc comment
--> sci-rs/src/signal/filter/design/cplx.rs:52:1
|
52 | / /// """
53 | |
| |_
54 | #[cfg(feature = "alloc")]
55 | / pub fn cplxreal_dyn<F>(z: Vec<Complex<F>>, tol: Option<F>) -> (Vec<Complex<F>>, Vec<Complex<F>>)
56 | | where
57 | | F: RealField + Float,
| |_________________________- the comment documents this function
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
= note: `-D clippy::empty-line-after-doc-comments` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::empty_line_after_doc_comments)]`
= help: if the empty line is unintentional remove it
Loading