Migrate from backoff
to backon
#3564
Annotations
2 errors
empty line after doc comment:
kube-runtime/src/utils/watch_ext.rs#L93
error: empty line after doc comment
--> kube-runtime/src/utils/watch_ext.rs:93:5
|
93 | / /// ```
94 | |
| |_^
95 | /// [`watcher()`]: crate::watcher::watcher
96 | / fn modify<F, K>(self, f: F) -> EventModify<Self, F>
97 | | where
98 | | Self: Stream<Item = Result<watcher::Event<K>, watcher::Error>> + Sized,
99 | | F: FnMut(&mut K),
| |_________________________- the comment documents this method
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments
note: the lint level is defined here
--> kube-runtime/src/lib.rs:11:9
|
11 | #![deny(clippy::all)]
| ^^^^^^^^^^^
= note: `#[deny(clippy::empty_line_after_doc_comments)]` implied by `#[deny(clippy::all)]`
= help: if the empty line is unintentional remove it
help: if the documentation should include the empty line include it in the comment
|
94 | ///
|
|
clippy_nightly
Clippy has exited with exit code 101
|