Skip to content

Commit

Permalink
Rollup merge of #33346 - Ryman:patch-4, r=alexcrichton
Browse files Browse the repository at this point in the history
libstd: correct the link to functions in io module documentation

Currently the link refers to it's own section of the documentation rather than the list of functions generated by rustdoc.

i.e. [this](http://doc.rust-lang.org/std/io/index.html#functions) should link to [this](http://doc.rust-lang.org/std/io/index.html#functions-1)
  • Loading branch information
Manishearth committed May 2, 2016
2 parents 80873ae + 9fe3c06 commit cdbcbd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
//!
//! ## Functions
//!
//! There are a number of [functions][functions] that offer access to various
//! There are a number of [functions][functions-list] that offer access to various
//! features. For example, we can use three of these functions to copy everything
//! from standard input to standard output:
//!
Expand All @@ -208,7 +208,7 @@
//! # }
//! ```
//!
//! [functions]: #functions
//! [functions-list]: #functions-1
//!
//! ## io::Result
//!
Expand Down

0 comments on commit cdbcbd0

Please sign in to comment.