c8d49a7d38
Fixes the clippy lints: ``` warning: empty line after doc comment --> proxmox-lang/src/lib.rs:33:1 | 33 | / /// ``` 34 | | | |_ 35 | #[macro_export] 36 | macro_rules! try_block { | ---------------------- the comment documents this macro | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_line_after_doc_comments = note: `#[warn(clippy::empty_line_after_doc_comments)]` on by default = help: if the empty line is unintentional remove it warning: empty line after doc comment --> proxmox-router/src/cli/mod.rs:308:5 | 308 | / /// Can be used multiple times. 309 | | | |_ 310 | /// Finish the command line interface. 311 | pub fn build(self) -> CommandLineInterface { | ------------------------------------------ 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: `#[warn(clippy::empty_line_after_doc_comments)]` on by default = help: if the empty line is unintentional remove it help: if the documentation should include the empty line include it in the comment | 309 | /// | ``` Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>