@@ -427,7 +427,7 @@ impl<'a> Display for Arguments<'a> {
427
427
}
428
428
}
429
429
430
- /// Format trait for the `?` character .
430
+ /// `?` formatting .
431
431
///
432
432
/// `Debug` should format the output in a programmer-facing, debugging context.
433
433
///
@@ -593,7 +593,7 @@ pub trait Display {
593
593
fn fmt ( & self , f : & mut Formatter ) -> Result ;
594
594
}
595
595
596
- /// Format trait for the `o` character .
596
+ /// `o` formatting .
597
597
///
598
598
/// The `Octal` trait should format its output as a number in base-8.
599
599
///
@@ -640,7 +640,7 @@ pub trait Octal {
640
640
fn fmt ( & self , f : & mut Formatter ) -> Result ;
641
641
}
642
642
643
- /// Format trait for the `b` character .
643
+ /// `b` formatting .
644
644
///
645
645
/// The `Binary` trait should format its output as a number in binary.
646
646
///
@@ -687,7 +687,7 @@ pub trait Binary {
687
687
fn fmt ( & self , f : & mut Formatter ) -> Result ;
688
688
}
689
689
690
- /// Format trait for the `x` character .
690
+ /// `x` formatting .
691
691
///
692
692
/// The `LowerHex` trait should format its output as a number in hexadecimal, with `a` through `f`
693
693
/// in lower case.
@@ -735,7 +735,7 @@ pub trait LowerHex {
735
735
fn fmt ( & self , f : & mut Formatter ) -> Result ;
736
736
}
737
737
738
- /// Format trait for the `X` character .
738
+ /// `X` formatting .
739
739
///
740
740
/// The `UpperHex` trait should format its output as a number in hexadecimal, with `A` through `F`
741
741
/// in upper case.
@@ -783,7 +783,7 @@ pub trait UpperHex {
783
783
fn fmt ( & self , f : & mut Formatter ) -> Result ;
784
784
}
785
785
786
- /// Format trait for the `p` character .
786
+ /// `p` formatting .
787
787
///
788
788
/// The `Pointer` trait should format its output as a memory location. This is commonly presented
789
789
/// as hexadecimal.
@@ -828,7 +828,7 @@ pub trait Pointer {
828
828
fn fmt ( & self , f : & mut Formatter ) -> Result ;
829
829
}
830
830
831
- /// Format trait for the `e` character .
831
+ /// `e` formatting .
832
832
///
833
833
/// The `LowerExp` trait should format its output in scientific notation with a lower-case `e`.
834
834
///
@@ -871,7 +871,7 @@ pub trait LowerExp {
871
871
fn fmt ( & self , f : & mut Formatter ) -> Result ;
872
872
}
873
873
874
- /// Format trait for the `E` character .
874
+ /// `E` formatting .
875
875
///
876
876
/// The `UpperExp` trait should format its output in scientific notation with an upper-case `E`.
877
877
///
0 commit comments