Rollup merge of #33346 - Ryman:patch-4, r=alexcrichton

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)
This commit is contained in:
Manish Goregaokar 2016-05-03 01:02:45 +05:30
commit 638cf9f675
No known key found for this signature in database
GPG Key ID: 3BBF4D3E2EF79F98

View File

@ -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:
//!
@ -208,7 +208,7 @@
//! # }
//! ```
//!
//! [functions]: #functions
//! [functions-list]: #functions-1
//!
//! ## io::Result
//!