BurntSushi / walkdir

Rust library for walking directories recursively.
The Unlicense
1.27k stars 109 forks source link

Fixing broken links when reading docs online #90

Closed jasongrlicky closed 6 years ago

jasongrlicky commented 6 years ago

When reading the docs on docs.rs, I found a couple of broken links:

Interestingly enough, when previewing the built docs locally I didn't see these problems - it could be that it's possible that browsers (I tested on Safari and Firefox on Mac) treat filenames as case-insensitive and URLs as case-sensitive? I'm not sure why the problem happens in the first place, but these changes bring the capitalization of the doc links in line with that of the WalkDir struct, so that should help.

Hope this helps!

BurntSushi commented 6 years ago

Thanks!