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 @@ -792,7 +792,7 @@ pub trait UpperExp {
792
792
/// assert_eq!(output, "Hello world!");
793
793
/// ```
794
794
///
795
- /// Please note that using [`write!`][write_macro] might be preferrable. Example:
795
+ /// Please note that using [`write!`] might be preferrable. Example:
796
796
///
797
797
/// ```
798
798
/// use std::fmt::Write;
@@ -803,7 +803,7 @@ pub trait UpperExp {
803
803
/// assert_eq!(output, "Hello world!");
804
804
/// ```
805
805
///
806
- /// [write_macro ]: ../../std/macro.write! .html
806
+ /// [`write!` ]: ../../std/macro.write.html
807
807
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
808
808
pub fn write ( output : & mut Write , args : Arguments ) -> Result {
809
809
let mut formatter = Formatter {
Original file line number Diff line number Diff line change 151
151
//!
152
152
//! [`Cell`]: ../cell/struct.Cell.html
153
153
//! [`RefCell`]: ../cell/struct.RefCell.html
154
- //! [`thread_local!`]: ../macro.thread_local! .html
154
+ //! [`thread_local!`]: ../macro.thread_local.html
155
155
//! [`with`]: struct.LocalKey.html#method.with
156
156
157
157
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
You can’t perform that action at this time.
0 commit comments