From d820fcba122771742f8bdeed4c8619292f3450f6 Mon Sep 17 00:00:00 2001
From: Mark Buer <mark.buer+github@gmail.com>
Date: Mon, 18 Jul 2016 17:54:15 +0930
Subject: [PATCH] Remove rustdoc reference to `walk_dir`

---
 src/libstd/fs.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index 83439b3f13215..c28f70b8692ad 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
     ///