Rollup merge of #36535 - GuillaumeGomez:macro_url, r=steveklabnik

Update to new macro url syntax

r? @steveklabnik
This commit is contained in:
Steve Klabnik 2016-09-30 13:44:46 -04:00 committed by GitHub
commit dcec48dc13
2 changed files with 3 additions and 3 deletions

View File

@ -794,7 +794,7 @@ pub trait UpperExp {
/// assert_eq!(output, "Hello world!"); /// assert_eq!(output, "Hello world!");
/// ``` /// ```
/// ///
/// Please note that using [`write!`][write_macro] might be preferrable. Example: /// Please note that using [`write!`] might be preferrable. Example:
/// ///
/// ``` /// ```
/// use std::fmt::Write; /// use std::fmt::Write;
@ -805,7 +805,7 @@ pub trait UpperExp {
/// assert_eq!(output, "Hello world!"); /// assert_eq!(output, "Hello world!");
/// ``` /// ```
/// ///
/// [write_macro]: ../../std/macro.write!.html /// [`write!`]: ../../std/macro.write.html
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn write(output: &mut Write, args: Arguments) -> Result { pub fn write(output: &mut Write, args: Arguments) -> Result {
let mut formatter = Formatter { let mut formatter = Formatter {

View File

@ -151,7 +151,7 @@
//! //!
//! [`Cell`]: ../cell/struct.Cell.html //! [`Cell`]: ../cell/struct.Cell.html
//! [`RefCell`]: ../cell/struct.RefCell.html //! [`RefCell`]: ../cell/struct.RefCell.html
//! [`thread_local!`]: ../macro.thread_local!.html //! [`thread_local!`]: ../macro.thread_local.html
//! [`with`]: struct.LocalKey.html#method.with //! [`with`]: struct.LocalKey.html#method.with
#![stable(feature = "rust1", since = "1.0.0")] #![stable(feature = "rust1", since = "1.0.0")]