Skip to content

Commit

Permalink
Comment out println in read_dir sorting example
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Raheem committed Aug 26, 2019
1 parent 53c5046 commit 3c820fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/libstd/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(())
/// }
/// ```
Expand Down

0 comments on commit 3c820fe

Please sign in to comment.