Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Grlicky <jgrlicky@gmail.com>2018-01-17 16:58:56 +0300
committerAndrew Gallant <jamslam@gmail.com>2018-01-17 16:58:56 +0300
commit9775f531be71074bdd5bf5025365f8e6e9efb110 (patch)
treea94d0fb53d3965b7130088313e1e1fca2ce33254
parent791d6034ccf70f5bda964c0a244c96af0e56ff99 (diff)
docs: fix a couple broken links
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9289714..053ce1c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -20,7 +20,7 @@ yielded by the iterator. Finally, the [`Error`] type is a small wrapper around
[`std::io::Error`] with additional information, such as if a loop was detected
while following symbolic links (not enabled by default).
-[`WalkDir`]: struct.Walkdir.html
+[`WalkDir`]: struct.WalkDir.html
[`DirEntry`]: struct.DirEntry.html
[`Error`]: struct.Error.html
[`std::io::Error`]: https://doc.rust-lang.org/stable/std/io/struct.Error.html
@@ -73,7 +73,7 @@ for entry in WalkDir::new("foo").follow_links(true) {
# }
```
-[`follow_links`]: struct.Walkdir.html#method.follow_links
+[`follow_links`]: struct.WalkDir.html#method.follow_links
# Example: skip hidden files and directories on unix