1
Fork 0

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.
This commit is contained in:
Ryman 2016-05-02 15:54:54 +01:00
parent e1a575cb07
commit 9fe3c065b0

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
//!