diff --git a/info.toml b/info.toml index 9563ff6..4ccf06a 100644 --- a/info.toml +++ b/info.toml @@ -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"""