From e25b53b5a8ead176d38f270637cb77d2c2cd32f6 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Sun, 3 Nov 2024 14:56:40 +0800 Subject: [PATCH] fix supertrait usage (#187) --- steps/8/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/8/README.md b/steps/8/README.md index 6a70d6f7..35f3905c 100644 --- a/steps/8/README.md +++ b/steps/8/README.md @@ -27,7 +27,7 @@ To understand how we use the `Config` trait, we first need to learn about [Rust Supertraits are similar to the concept of "inheritance" from other programming languages. In Rust, it allows one trait as being a superset of another trait. -You will notice that our `Config` trait is a supertrait of the `frame_system::Config` trait. +You will notice that our `Config` trait is a subtrait of the supertrait `frame_system::Config`. What is `frame_system`? What is in `frame_system::Config`?