From f371e4cd95fc1e57c1c217bd42241d309978a2c5 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Fri, 24 May 2024 12:16:04 +0200 Subject: [PATCH] Fix typo. --- book/src/04_traits/09_from.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/04_traits/09_from.md b/book/src/04_traits/09_from.md index 1ed1431..df54bfc 100644 --- a/book/src/04_traits/09_from.md +++ b/book/src/04_traits/09_from.md @@ -6,7 +6,7 @@ Let's go back to where our string journey started: let ticket = Ticket::new("A title".into(), "A description".into(), "To-Do".into()); ``` -We can now know enough to start unpacking what `.into()` is doing here. +We now know enough to start unpacking what `.into()` is doing here. ## The problem -- 2.45.2