From 9fe3c065b0e94b1e2ce7f14ab512475e79426ce4 Mon Sep 17 00:00:00 2001 From: Ryman Date: Mon, 2 May 2016 15:54:54 +0100 Subject: [PATCH] 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. --- src/libstd/io/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index d914d143e70..ca15aa2d56c 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -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 //!