Comment out println in read_dir sorting example
This commit is contained in:
parent
53c504650d
commit
3c820fef9f
1 changed files with 5 additions and 5 deletions
|
|
@ -2008,14 +2008,14 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
|
|||
/// .map(|res| res.map(|e| e.path()))
|
||||
/// .collect::<Result<Vec<_>, io::Error>>()?;
|
||||
///
|
||||
/// println!(
|
||||
/// "Entries before sorting (may or may not be sorted already): {:?}",
|
||||
/// entries
|
||||
/// );
|
||||
/// // println!(
|
||||
/// // "Entries before sorting (may or may not be sorted already): {:?}",
|
||||
/// // entries
|
||||
/// // );
|
||||
///
|
||||
/// entries.sort();
|
||||
///
|
||||
/// println!("Entries after sorting: {:?}", entries);
|
||||
/// // println!("Entries after sorting: {:?}", entries);
|
||||
/// Ok(())
|
||||
/// }
|
||||
/// ```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue