Skip to content

Improve docs & codecov for 0.5.0 #66

Improve docs & codecov for 0.5.0

Improve docs & codecov for 0.5.0 #66

GitHub Actions / clippy failed Jul 8, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (2)

src/pointer.rs|272 col 20| error: item in documentation is missing backticks
--> src/pointer.rs:272:20
|
272 | /// [Token]: crate::Token
| ^^^^^^^^^^^^
|
= 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:25:22
|
25 | #![deny(clippy::all, clippy::pedantic)]
| ^^^^^^^^^^^^^^^^
= note: #[deny(clippy::doc_markdown)] implied by #[deny(clippy::pedantic)]
help: try
|
272 | /// [Token]: crate::Token
| ~~~~~~~~~~~~~~
src/pointer.rs|273 col 20| error: item in documentation is missing backticks
--> src/pointer.rs:273:20
|
273 | /// [Index]: crate::index::Index
| ^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
273 | /// [Index]: crate::index::Index
| ~~~~~~~~~~~~~~~~~~~~~

Filtered Findings (0)

Annotations

Check failure on line 272 in src/pointer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] src/pointer.rs#L272

error: item in documentation is missing backticks
   --> src/pointer.rs:272:20
    |
272 |     /// [`Token`]: crate::Token
    |                    ^^^^^^^^^^^^
    |
    = 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:25:22
    |
25  | #![deny(clippy::all, clippy::pedantic)]
    |                      ^^^^^^^^^^^^^^^^
    = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(clippy::pedantic)]`
help: try
    |
272 |     /// [`Token`]: `crate::Token`
    |                    ~~~~~~~~~~~~~~
Raw output
src/pointer.rs:272:20:e:error: item in documentation is missing backticks
   --> src/pointer.rs:272:20
    |
272 |     /// [`Token`]: crate::Token
    |                    ^^^^^^^^^^^^
    |
    = 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:25:22
    |
25  | #![deny(clippy::all, clippy::pedantic)]
    |                      ^^^^^^^^^^^^^^^^
    = note: `#[deny(clippy::doc_markdown)]` implied by `#[deny(clippy::pedantic)]`
help: try
    |
272 |     /// [`Token`]: `crate::Token`
    |                    ~~~~~~~~~~~~~~


__END__

Check failure on line 273 in src/pointer.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] src/pointer.rs#L273

error: item in documentation is missing backticks
   --> src/pointer.rs:273:20
    |
273 |     /// [`Index`]: crate::index::Index
    |                    ^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
    |
273 |     /// [`Index`]: `crate::index::Index`
    |                    ~~~~~~~~~~~~~~~~~~~~~
Raw output
src/pointer.rs:273:20:e:error: item in documentation is missing backticks
   --> src/pointer.rs:273:20
    |
273 |     /// [`Index`]: crate::index::Index
    |                    ^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
    |
273 |     /// [`Index`]: `crate::index::Index`
    |                    ~~~~~~~~~~~~~~~~~~~~~


__END__