Skip to content

Fill in language addresses (#297) #289

Fill in language addresses (#297)

Fill in language addresses (#297) #289

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

clippy

5 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 5
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 71 in src/transform.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
  --> src/transform.rs:71:5
   |
71 | /// a vector containing a single empty string ("").
   |     ^
   |
   = 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
help: indent this line
   |
71 | ///    a vector containing a single empty string ("").
   |     +++

Check warning on line 69 in src/transform.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item without indentation

warning: doc list item without indentation
  --> src/transform.rs:69:5
   |
69 | /// based on the addresses it contains.
   |     ^
   |
   = 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: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
   |
69 | ///    based on the addresses it contains.
   |     +++

Check warning on line 203 in src/data_formats/symgen_yml/symgen.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'v

warning: the following explicit lifetimes could be elided: 'v
   --> src/data_formats/symgen_yml/symgen.rs:203:6
    |
203 | impl<'v, 's, I> Iterator for RealizedSymbolIter<'v, 's, I>
    |      ^^                                         ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
203 - impl<'v, 's, I> Iterator for RealizedSymbolIter<'v, 's, I>
203 + impl<'s, I> Iterator for RealizedSymbolIter<'_, 's, I>
    |

Check warning on line 484 in src/data_formats/symgen_yml/merge.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'm

warning: the following explicit lifetimes could be elided: 'm
   --> src/data_formats/symgen_yml/merge.rs:484:6
    |
484 | impl<'m, 's> SymbolListManager<'m, 's> {
    |      ^^                        ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
484 - impl<'m, 's> SymbolListManager<'m, 's> {
484 + impl<'s> SymbolListManager<'_, 's> {
    |

Check warning on line 318 in src/checks.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/checks.rs:318:10
    |
318 |     impl<'a> CompleteVersionListChecker<'a> {
    |          ^^                             ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
    |
318 -     impl<'a> CompleteVersionListChecker<'a> {
318 +     impl CompleteVersionListChecker<'_> {
    |