Skip to content

chore(dep): bump the deps group across 1 directory with 14 updates (#… #285

chore(dep): bump the deps group across 1 directory with 14 updates (#…

chore(dep): bump the deps group across 1 directory with 14 updates (#… #285

GitHub Actions / clippy succeeded Dec 2, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
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 warning on line 16 in src/cmds/completions.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

empty lines after doc comment

warning: empty lines after doc comment
  --> src/cmds/completions.rs:12:1
   |
12 | / /// Generate shell Completions
13 | |
14 | | /// USAGE:
15 | | ///     leetcode completions <shell>
16 | |
   | |_
...
20 |   pub struct CompletionCommand;
   |   ---------------------------- the comment documents this struct
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
   = note: `#[warn(clippy::empty_line_after_doc_comments)]` on by default
   = help: if the empty lines are unintentional remove them
help: if the documentation should include the empty lines include them in the comment
   |
13 + ///
14 | /// USAGE:
15 | ///     leetcode completions <shell>
16 + ///
   |