File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ impl fmt::Display for Binary {
80
80
impl fmt:: Debug for Binary {
81
81
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
82
82
// Use an output inspired by tuples (https://doc.rust-lang.org/std/fmt/struct.Formatter.html#method.debug_tuple)
83
- // but with a custom implementation to avoid the need for an intemediate hex string.
83
+ // but with a custom implementation to avoid the need for an intermediate hex string.
84
84
write ! ( f, "Binary(" ) ?;
85
85
for byte in self . 0 . iter ( ) {
86
86
write ! ( f, "{byte:02x}" ) ?;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ impl fmt::Display for HexBinary {
71
71
impl fmt:: Debug for HexBinary {
72
72
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
73
73
// Use an output inspired by tuples (https://doc.rust-lang.org/std/fmt/struct.Formatter.html#method.debug_tuple)
74
- // but with a custom implementation to avoid the need for an intemediate hex string.
74
+ // but with a custom implementation to avoid the need for an intermediate hex string.
75
75
write ! ( f, "HexBinary(" ) ?;
76
76
for byte in self . 0 . iter ( ) {
77
77
write ! ( f, "{byte:02x}" ) ?;
You can’t perform that action at this time.
0 commit comments