From: mckzm <134839822+mckzm@users.noreply.github.com>
Date: Mon, 5 Aug 2024 15:53:07 +0000 (+0900)
Subject: Fix reference to supertrait syntax in 09_error_trait.md (#124)
X-Git-Url: https://git.euphorik.ch/index.cgi?a=commitdiff_plain;h=2765fdaa0e801a95e2a41db94b64a39e7413e1af;p=rust_exercises.git

Fix reference to supertrait syntax in 09_error_trait.md (#124)

The [Error trait](https://rust-exercises.com/100-exercises/05_ticket_v2/09_error_trait.html?highlight=supertrait#the-error-trait) chapter states that the reader may recall the supertrait syntax from the [Sized trait](https://rust-exercises.com/100-exercises/04_traits/08_sized) chapter. Actually the syntax is introduced in the [From and Into](https://rust-exercises.com/100-exercises/04_traits/09_from) chapter instead. This PR amends the text accordingly.
---

diff --git a/book/src/05_ticket_v2/09_error_trait.md b/book/src/05_ticket_v2/09_error_trait.md
index afe7e72..9d903fe 100644
--- a/book/src/05_ticket_v2/09_error_trait.md
+++ b/book/src/05_ticket_v2/09_error_trait.md
@@ -22,7 +22,7 @@ that implements the `Error` trait.
 pub trait Error: Debug + Display {}
 ```
 
-You might recall the `:` syntax from [the `Sized` trait](../04_traits/08_sized.md)—it's used to specify **supertraits**.
+You might recall the `:` syntax from [the `From` trait](../04_traits/09_from.md#supertrait--subtrait)—it's used to specify **supertraits**.
 For `Error`, there are two supertraits: `Debug` and `Display`. If a type wants to implement `Error`, it must also
 implement `Debug` and `Display`.