File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -488,13 +488,14 @@ impl<'a> Display for Arguments<'a> {
488
488
/// The origin is: Point { x: 0, y: 0 }
489
489
/// ```
490
490
///
491
- /// There are a number of `debug_*` methods on `Formatter` to help you with manual
491
+ /// There are a number of `debug_*` methods on [ `Formatter`] to help you with manual
492
492
/// implementations, such as [`debug_struct`][debug_struct].
493
493
///
494
494
/// `Debug` implementations using either `derive` or the debug builder API
495
- /// on `Formatter` support pretty printing using the alternate flag: `{:#?}`.
495
+ /// on [ `Formatter`] support pretty printing using the alternate flag: `{:#?}`.
496
496
///
497
497
/// [debug_struct]: ../../std/fmt/struct.Formatter.html#method.debug_struct
498
+ /// [`Formatter`]: ../../std/fmt/struct.Formatter.html
498
499
///
499
500
/// Pretty printing with `#?`:
500
501
///
@@ -1321,8 +1322,11 @@ impl<'a> Formatter<'a> {
1321
1322
self . flags & ( 1 << FlagV1 :: SignAwareZeroPad as u32 ) != 0
1322
1323
}
1323
1324
1324
- /// Creates a `DebugStruct` builder designed to assist with creation of
1325
- /// `fmt::Debug` implementations for structs.
1325
+ /// Creates a [`DebugStruct`] builder designed to assist with creation of
1326
+ /// [`fmt::Debug`] implementations for structs.
1327
+ ///
1328
+ /// [`DebugStruct`]: ../../std/fmt/struct.DebugStruct.html
1329
+ /// [`fmt::Debug`]: ../../std/fmt/trait.Debug.html
1326
1330
///
1327
1331
/// # Examples
1328
1332
///
You can’t perform that action at this time.
0 commit comments