Skip to content

Update to latest Rust edition (#3) #4

Update to latest Rust edition (#3)

Update to latest Rust edition (#3) #4

GitHub Actions / clippy failed Aug 11, 2024 in 1s

clippy

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.80.1 (3f5fd8dd4 2024-08-06)
  • cargo 1.80.1 (376290515 2024-07-16)
  • clippy 0.1.80 (3f5fd8d 2024-08-06)

Annotations

Check failure on line 181 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item missing indentation

error: doc list item missing indentation
   --> src/lib.rs:181:9
    |
181 |     /// always force step generation to decelerate and stop.
    |         ^
    |
    = help: if this is supposed to be its own paragraph, add a blank line
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
note: the lint level is defined here
   --> src/lib.rs:3:9
    |
3   | #![deny(warnings)]
    |         ^^^^^^^^
    = note: `#[deny(clippy::doc_lazy_continuation)]` implied by `#[deny(warnings)]`
help: indent this line
    |
181 |     ///    always force step generation to decelerate and stop.
    |         +++