From 1660f1647eb16692f5dd1367395416c9b261848d Mon Sep 17 00:00:00 2001
From: Tostapunk <s.mattia2000@gmail.com>
Date: Wed, 28 Sep 2022 23:40:00 +0200
Subject: [PATCH] fix: Fix typo in errors5 hint

fixes #1205
---
 info.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/info.toml b/info.toml
index e80d8a9c..ecf307d7 100644
--- a/info.toml
+++ b/info.toml
@@ -627,7 +627,7 @@ propagated using `?` operators. How do we declare a return type from `main()` th
 
 Under the hood, the `?` operator calls `From::from` on the error value to convert it to a boxed
 trait object, a `Box<dyn error::Error>`. This boxed trait object is polymorphic, and since all
-errors implement the `error:Error` trait, we can capture lots of different errors in one "Box" 
+errors implement the `error::Error` trait, we can capture lots of different errors in one "Box"
 object. 
 
 Check out this section of the book: