Skip to content

chore: Release v0.8.10 #12

chore: Release v0.8.10

chore: Release v0.8.10 #12

GitHub Actions / clippy succeeded Apr 27, 2024 in 1s

clippy

3 warnings

Details

Results

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

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check warning on line 47 in src/lender.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

item in documentation is missing backticks

warning: item in documentation is missing backticks
  --> src/lender.rs:47:12
   |
47 | /// If the RwLock used is poisoned, but it only happens if a panic happens
   |            ^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
   |
47 | /// If the `RwLock` used is poisoned, but it only happens if a panic happens
   |            ~~~~~~~~

Check warning on line 35 in src/lender.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

item in documentation is missing backticks

warning: item in documentation is missing backticks
  --> src/lender.rs:35:12
   |
35 | /// If the RwLock used is poisoned, but it only happens if a panic happens
   |            ^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
   |
35 | /// If the `RwLock` used is poisoned, but it only happens if a panic happens
   |            ~~~~~~~~

Check warning on line 20 in src/lender.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

item in documentation is missing backticks

warning: item in documentation is missing backticks
  --> src/lender.rs:20:12
   |
20 | /// If the RwLock used is poisoned, but it only happens if a panic happens
   |            ^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
note: the lint level is defined here
  --> src/lib.rs:4:9
   |
4  | #![warn(clippy::pedantic)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[warn(clippy::doc_markdown)]` implied by `#[warn(clippy::pedantic)]`
help: try
   |
20 | /// If the `RwLock` used is poisoned, but it only happens if a panic happens
   |            ~~~~~~~~