diff --git a/src/hello/print.md b/src/hello/print.md index 495f3f2061..7b1b7ed41e 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -67,7 +67,7 @@ friendly fashion. Here, we used `fmt::Display `because the std library provides implementations for these types. To print text for custom types, more steps are required. -Implementing the `fmt::Display` trait automagically implements the +Implementing the `fmt::Display` trait automatically implements the [`ToString`] trait which allows us to [convert] the type to [`String`][string]. ### Activities