diff --git a/en/src/formatted-output/debug-display.md b/en/src/formatted-output/debug-display.md index 34e98f1..c74a122 100644 --- a/en/src/formatted-output/debug-display.md +++ b/en/src/formatted-output/debug-display.md @@ -4,7 +4,7 @@ All types which want to be printable must implement the `std::fmt` formatting tr Automatic implementations are only provided for types such as in the `std` library. All others have to be manually implemented. ## Debug -The implementation of `Debug` is very straightfoward: All types can `derive` the `std::fmt::Debug` implementation. This is not true for `std::fmt::Display` which must be manually implemented. +The implementation of `Debug` is very straightforward: All types can `derive` the `std::fmt::Debug` implementation. This is not true for `std::fmt::Display` which must be manually implemented. `{:?}` must be used to print out the type which has implemented the `Debug` trait.