We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8068812 commit 53c5046Copy full SHA for 53c5046
src/libstd/fs.rs
@@ -2002,7 +2002,7 @@ pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> io::Result<()> {
2002
/// use std::{fs, io};
2003
///
2004
/// fn main() -> io::Result<()> {
2005
-/// // The order read_dir returns entries is not guaranteed. If reproducible
+/// // The order in which `read_dir` returns entries is not guaranteed. If reproducible
2006
/// // ordering is required the entries should be explicitly sorted.
2007
/// let mut entries = fs::read_dir(".")?
2008
/// .map(|res| res.map(|e| e.path()))
0 commit comments