From 7be865ce3071a2837c9f415bc008f567f317c4a7 Mon Sep 17 00:00:00 2001 From: Carlos Precioso Date: Fri, 23 Feb 2024 13:43:28 +0100 Subject: [PATCH] chore: fix 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 71c368963e..abc26d4be4 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -87,7 +87,7 @@ for these types. To print text for custom types, more steps are required. Implementing the `fmt::Display` trait automatically implements the [`ToString`] trait which allows us to [convert] the type to [`String`][string]. -In *line 43*, `#[allow(dead_code)]` is an [attribute] which only apply to the module after it. +In *line 43*, `#[allow(dead_code)]` is an [attribute] which only applies to the module after it. ### Activities