mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-03-07 00:58:32 +03:00
Fixes the clippy lint: ``` warning: empty line after doc comment --> src/tape/pool_writer/mod.rs:441:5 | 441 | / /// updated. 442 | | | |_ ... 448 | / pub fn append_snapshot_archive( 449 | | &mut self, 450 | | snapshot_reader: &SnapshotReader, 451 | | ) -> Result<(bool, usize), Error> { | |_____________________________________- 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 = help: if the empty line is unintentional remove it help: if the documentation should include the empty line include it in the comment | 442 | /// | ``` Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>