Skip to content

Commit

Permalink
fix supertrait usage (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
shawntabrizi authored Nov 3, 2024
1 parent a653ddc commit e25b53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`?

Expand Down

0 comments on commit e25b53b

Please sign in to comment.