File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ pub trait UpperExp {
794794/// assert_eq!(output, "Hello world!");
795795/// ```
796796///
797- /// Please note that using [`write!`][write_macro] might be preferrable. Example:
797+ /// Please note that using [`write!`] might be preferrable. Example:
798798///
799799/// ```
800800/// use std::fmt::Write;
@@ -805,7 +805,7 @@ pub trait UpperExp {
805805/// assert_eq!(output, "Hello world!");
806806/// ```
807807///
808- /// [write_macro ]: ../../std/macro.write! .html
808+ /// [`write!` ]: ../../std/macro.write.html
809809#[ stable( feature = "rust1" , since = "1.0.0" ) ]
810810pub fn write ( output : & mut Write , args : Arguments ) -> Result {
811811 let mut formatter = Formatter {
Original file line number Diff line number Diff line change 151151//!
152152//! [`Cell`]: ../cell/struct.Cell.html
153153//! [`RefCell`]: ../cell/struct.RefCell.html
154- //! [`thread_local!`]: ../macro.thread_local! .html
154+ //! [`thread_local!`]: ../macro.thread_local.html
155155//! [`with`]: struct.LocalKey.html#method.with
156156
157157#![ stable( feature = "rust1" , since = "1.0.0" ) ]
You can’t perform that action at this time.
0 commit comments