From c33b85461427f71e53c23d5f7d546f18a29a03e5 Mon Sep 17 00:00:00 2001 From: Marcel Schmalzl <12732886+holzkohlengrill@users.noreply.github.com> Date: Mon, 19 Jun 2023 17:06:01 +0200 Subject: [PATCH] Fixed line number --- 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 bf23a90239..ef25dab0e6 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -88,7 +88,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 46*, `#[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 apply to the module after it. ### Activities