From 5de708b3eb182b5d5ff532cdb461b35559869240 Mon Sep 17 00:00:00 2001 From: Yash Joshi Date: Wed, 3 Jul 2019 01:26:00 +0530 Subject: [PATCH] Fix: Automatically Typo --- src/hello/print.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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