src/pxar/binary_search_tree.rs: fix test

This commit is contained in:
Dietmar Maurer 2019-03-15 11:34:31 +01:00
parent 9307279faf
commit 7dfa17c7cc
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@
//! * GOODBYE -- lookup table at the end of a list of directory entries
mod binary_search_tree;
pub use binary_search_tree::*;
mod format_definition;
pub use format_definition::*;

View File

@ -62,7 +62,7 @@ fn copy_binary_search_tree_inner<F: FnMut(usize, usize)>(
/// info.
///
/// ```
/// # use proxmox_backup::pxar::binary_search_tree::copy_binary_search_tree;
/// # use proxmox_backup::pxar::copy_binary_search_tree;
/// copy_binary_search_tree(5, |src, dest| {
/// println!("Copy {} to {}", src, dest);
/// });