about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-21 11:27:00 +0200
committerGitHub <noreply@github.com>2016-07-21 11:27:00 +0200
commit271230f34770b3422d58113a99718bf08fbf8680 (patch)
tree5f23a3d429a40480fd270243bc66ca766456d0e9 /src/libstd
parent4817c5e53d18897d9c851dffc293d6ac3d7fecdf (diff)
parentd820fcba122771742f8bdeed4c8619292f3450f6 (diff)
downloadrust-271230f34770b3422d58113a99718bf08fbf8680.tar.gz
rust-271230f34770b3422d58113a99718bf08fbf8680.zip
Rollup merge of #34895 - mark-buer:patch-1, r=steveklabnik
Remove rustdoc reference to `walk_dir`
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index 83439b3f132..c28f70b8692 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -791,8 +791,8 @@ impl Iterator for ReadDir {
 impl DirEntry {
     /// Returns the full path to the file that this entry represents.
     ///
-    /// The full path is created by joining the original path to `read_dir` or
-    /// `walk_dir` with the filename of this entry.
+    /// The full path is created by joining the original path to `read_dir`
+    /// with the filename of this entry.
     ///
     /// # Examples
     ///