feat: fix typo in struct1 hint

This commit is contained in:
Said Aspen 2020-04-16 15:45:54 +02:00
parent e1c7e94d8c
commit decd6fcfec

View file

@ -203,7 +203,7 @@ mode = "test"
hint = """
Rust has more than one type of struct. Both variants are used to package related data together.
On the one hand, there are normal, or classic, structs. These are named collections of related data stored in fields.
The other variant is tuple structs They are basically just named tuples.
The other variant is tuple structs. Basically just named tuples.
In this exercise you need to implement one of each kind.
Read more about structs in The Book: https://doc.rust-lang.org/stable/book/ch05-00-structs.html"""