From f0fb7ab0e7a25a516d32f01bf9d7e0e30e054ec3 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 11 Aug 2017 13:46:12 +0200 Subject: [PATCH] Add missing link in fmt::format function --- src/liballoc/fmt.rs | 42 +++++++++++++++-------------- src/librustc_typeck/check/demand.rs | 4 +-- 2 files changed, 24 insertions(+), 22 deletions(-) diff --git a/src/liballoc/fmt.rs b/src/liballoc/fmt.rs index 5fc583d9e01..480fb4b9eaa 100644 --- a/src/liballoc/fmt.rs +++ b/src/liballoc/fmt.rs @@ -149,7 +149,7 @@ //! //! Additionally, the return value of this function is [`fmt::Result`] which is a //! type alias of [`Result`]`<(), `[`std::fmt::Error`]`>`. Formatting implementations -//! should ensure that they propagate errors from the [`Formatter`] (e.g., when +//! should ensure that they propagate errors from the [`Formatter`][`Formatter`] (e.g., when //! calling [`write!`]) however, they should never return errors spuriously. That //! is, a formatting implementation must and may only return an error if the //! passed-in [`Formatter`] returns an error. This is because, contrary to what @@ -209,7 +209,7 @@ //! //! These two formatting traits have distinct purposes: //! -//! - [`fmt::Display`][`Display] implementations assert that the type can be faithfully +//! - [`fmt::Display`][`Display`] implementations assert that the type can be faithfully //! represented as a UTF-8 string at all times. It is **not** expected that //! all types implement the `Display` trait. //! - [`fmt::Debug`][`Debug`] implementations should be implemented for **all** public types. @@ -357,7 +357,7 @@ //! * `-` - Currently not used //! * `#` - This flag is indicates that the "alternate" form of printing should //! be used. The alternate forms are: -//! * `#?` - pretty-print the `Debug` formatting +//! * `#?` - pretty-print the [`Debug`] formatting //! * `#x` - precedes the argument with a `0x` //! * `#X` - precedes the argument with a `0x` //! * `#b` - precedes the argument with a `0b` @@ -475,25 +475,25 @@ //! them with the same character. For example, the `{` character is escaped with //! `{{` and the `}` character is escaped with `}}`. //! -//! [`format!`]: ../macro.format.html -//! [`usize`]: ../primitive.usize.html -//! [`isize`]: ../primitive.isize.html -//! [`i8`]: ../primitive.i8.html +//! [`format!`]: ../../macro.format.html +//! [`usize`]: ../../std/primitive.usize.html +//! [`isize`]: ../../std/primitive.isize.html +//! [`i8`]: ../../std/primitive.i8.html //! [`Display`]: trait.Display.html //! [`Binary`]: trait.Binary.html //! [`fmt::Result`]: type.Result.html -//! [`Result`]: ../result/enum.Result.html +//! [`Result`]: ../../std/result/enum.Result.html //! [`std::fmt::Error`]: struct.Error.html //! [`Formatter`]: struct.Formatter.html -//! [`write!`]: ../macro.write.html +//! [`write!`]: ../../std/macro.write.html //! [`Debug`]: trait.Debug.html -//! [`format!`]: ../macro.format.html -//! [`writeln!`]: ../macro.writeln.html -//! [`write_fmt`]: ../io/trait.Write.html#method.write_fmt -//! [`std::io::Write`]: ../io/trait.Write.html -//! [`println!`]: ../macro.println.html -//! [`write!`]: ../macro.write.html -//! [`format_args!`]: ../macro.format_args.html +//! [`format!`]: ../../std/macro.format.html +//! [`writeln!`]: ../../std/macro.writeln.html +//! [`write_fmt`]: ../../std/io/trait.Write.html#method.write_fmt +//! [`std::io::Write`]: ../../std/io/trait.Write.html +//! [`println!`]: ../../std/macro.println.html +//! [`write!`]: ../../std/macro.write.html +//! [`format_args!`]: ../../std/macro.format_args.html //! [`fmt::Arguments`]: struct.Arguments.html //! [`write`]: fn.write.html //! [`format`]: fn.format.html @@ -521,10 +521,10 @@ use string; -/// The `format` function takes an `Arguments` struct and returns the resulting +/// The `format` function takes an [`Arguments`] struct and returns the resulting /// formatted string. /// -/// The `Arguments` instance can be created with the `format_args!` macro. +/// The [`Arguments`] instance can be created with the [`format_args!`] macro. /// /// # Examples /// @@ -537,7 +537,7 @@ /// assert_eq!(s, "Hello, world!"); /// ``` /// -/// Please note that using [`format!`][format!] might be preferrable. +/// Please note that using [`format!`] might be preferrable. /// Example: /// /// ``` @@ -545,7 +545,9 @@ /// assert_eq!(s, "Hello, world!"); /// ``` /// -/// [format!]: ../macro.format.html +/// [`Arguments`]: struct.Arguments.html +/// [`format_args!`]: ../../std/macro.format_args.html +/// [`format!`]: ../../std/macro.format.html #[stable(feature = "rust1", since = "1.0.0")] pub fn format(args: Arguments) -> string::String { let capacity = args.estimated_capacity(); diff --git a/src/librustc_typeck/check/demand.rs b/src/librustc_typeck/check/demand.rs index 7bb8a251354..fc241c023cd 100644 --- a/src/librustc_typeck/check/demand.rs +++ b/src/librustc_typeck/check/demand.rs @@ -67,7 +67,7 @@ pub fn demand_eqtype_with_origin(&self, Ok(InferOk { obligations, value: () }) => { self.register_predicates(obligations); None - }, + } Err(e) => { Some(self.report_mismatched_types(cause, expected, actual, e)) } @@ -82,7 +82,7 @@ pub fn demand_coerce(&self, expr: &hir::Expr, checked_ty: Ty<'tcx>, expected: Ty // Checks that the type of `expr` can be coerced to `expected`. // - // NB: This code relies on `self.diverges` to be accurate. In + // NB: This code relies on `self.diverges` to be accurate. In // particular, assignments to `!` will be permitted if the // diverges flag is currently "always". pub fn demand_coerce_diag(&self, -- GitLab