2021-11-04 07:52:36 -05:00
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:9:9
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// The foo_bar function does _nothing_. See also foo::bar. (note the dot there)
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::doc-markdown` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::doc_markdown)]`
|
2021-12-06 05:33:31 -06:00
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// The `foo_bar` function does _nothing_. See also foo::bar. (note the dot there)
|
|
|
|
| ~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:9:51
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// The foo_bar function does _nothing_. See also foo::bar. (note the dot there)
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// The foo_bar function does _nothing_. See also `foo::bar`. (note the dot there)
|
|
|
|
| ~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:10:83
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | /// Markdown is _weird_. I mean _really weird_. This \_ is ok. So is `_`. But not Foo::some_fun
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | /// Markdown is _weird_. I mean _really weird_. This \_ is ok. So is `_`. But not `Foo::some_fun`
|
2021-12-06 05:33:31 -06:00
|
|
|
| ~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:12:13
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// Here be ::a::global:path, and _::another::global::path_. :: is not a path though.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// Here be `::a::global:path`, and _::another::global::path_. :: is not a path though.
|
|
|
|
| ~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:12:36
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// Here be ::a::global:path, and _::another::global::path_. :: is not a path though.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// Here be ::a::global:path, and _`::another::global::path`_. :: is not a path though.
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:13:25
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// Import an item from ::awesome::global::blob:: (Intended postfix)
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// Import an item from `::awesome::global::blob::` (Intended postfix)
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:14:31
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// These are the options for ::Cat: (Intended trailing single colon, shouldn't be linted)
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// These are the options for `::Cat`: (Intended trailing single colon, shouldn't be linted)
|
|
|
|
| ~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:15:22
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// That's not code ~NotInCodeBlock~.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// That's not code ~`NotInCodeBlock`~.
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:16:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:30:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:37:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:51:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:78:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:95:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:103:8
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// ## CamelCaseThing
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// ## `CamelCaseThing`
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:106:7
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// # CamelCaseThing
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// # `CamelCaseThing`
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:108:22
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// Not a title #897 CamelCaseThing
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// Not a title #897 `CamelCaseThing`
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:109:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:116:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:129:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:140:43
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /** E.g., serialization of an empty list: FooBar
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /** E.g., serialization of an empty list: `FooBar`
|
|
|
|
| ~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:145:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | And BarQuz too.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | And `BarQuz` too.
|
|
|
|
| ~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:146:1
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | `be_sure_we_got_to_the_end_of_it`
|
|
|
|
|
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:151:43
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /** E.g., serialization of an empty list: FooBar
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /** E.g., serialization of an empty list: `FooBar`
|
|
|
|
| ~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:156:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | And BarQuz too.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | And `BarQuz` too.
|
|
|
|
| ~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:157:1
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | `be_sure_we_got_to_the_end_of_it`
|
|
|
|
|
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:168:5
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// be_sure_we_got_to_the_end_of_it
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `be_sure_we_got_to_the_end_of_it`
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:187:22
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | /// An iterator over mycrate::Collection's values.
|
2021-12-06 05:33:31 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// An iterator over `mycrate::Collection`'s values.
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2021-11-04 07:52:36 -05:00
|
|
|
|
2023-09-08 17:39:20 -05:00
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:211:34
|
2023-09-08 17:39:20 -05:00
|
|
|
|
|
|
|
|
LL | /// Foo \[bar\] \[baz\] \[qux\]. DocMarkdownLint
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// Foo \[bar\] \[baz\] \[qux\]. `DocMarkdownLint`
|
|
|
|
| ~~~~~~~~~~~~~~~~~
|
|
|
|
|
2023-12-16 07:12:50 -06:00
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:234:22
|
2023-12-16 07:12:50 -06:00
|
|
|
|
|
|
|
|
LL | /// There is no try (do() or do_not()).
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// There is no try (`do()` or do_not()).
|
|
|
|
| ~~~~~~
|
|
|
|
|
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:234:30
|
2023-12-16 07:12:50 -06:00
|
|
|
|
|
|
|
|
LL | /// There is no try (do() or do_not()).
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// There is no try (do() or `do_not()`).
|
|
|
|
| ~~~~~~~~~~
|
|
|
|
|
2024-03-07 10:19:29 -06:00
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:237:5
|
2024-03-07 10:19:29 -06:00
|
|
|
|
|
|
|
|
LL | /// ABes
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `ABes`
|
|
|
|
| ~~~~~~
|
|
|
|
|
2024-04-18 10:48:52 -05:00
|
|
|
error: item in documentation is missing backticks
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:243:9
|
2024-04-18 10:48:52 -05:00
|
|
|
|
|
|
|
|
LL | /// foo()
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL | /// `foo()`
|
|
|
|
| ~~~~~~~
|
|
|
|
|
2024-05-30 03:49:05 -05:00
|
|
|
error: you should put bare URLs between `<`/`>` or make a proper Markdown link
|
2024-07-25 11:29:17 -05:00
|
|
|
--> tests/ui/doc/doc-fixable.rs:247:5
|
2024-05-30 03:49:05 -05:00
|
|
|
|
|
|
|
|
LL | /// https://github.com/rust-lang/rust-clippy/pull/12836
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `<https://github.com/rust-lang/rust-clippy/pull/12836>`
|
|
|
|
|
|
|
|
error: aborting due to 34 previous errors
|
2021-11-04 07:52:36 -05:00
|
|
|
|