summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorJohn Baber-Lucero <github@frundle.com>2021-01-30 16:12:06 +0000
committerGitHub <noreply@github.com>2021-01-30 17:12:06 +0100
commitcddc1e86e7ec744ee644cc774a4887b1a0ded3e8 (patch)
treefc204bb2216ef8fa8e7a9e8c1c67898f8bbc8c5a /info.toml
parent24ea42ce61043d25e5062ccbf0e56576f1eb70e6 (diff)
fix(info): Fix typo (#635)
Co-authored-by: John Baber-Lucero <git@frundle.com>
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index 23c6491..f0fed93 100644
--- a/info.toml
+++ b/info.toml
@@ -284,7 +284,7 @@ hint = """
Rust has more than one type of struct. Three actually, all variants are used to package related data together.
There are normal (or classic) structs. These are named collections of related data stored in fields.
Tuple structs are basically just named tuples.
-Finally, Unit structs. These don't have and fields and are useful for generics.
+Finally, Unit structs. These don't have any fields and are useful for generics.
In this exercise you need to complete and implement one of each kind.
Read more about structs in The Book: https://doc.rust-lang.org/book/ch05-01-defining-structs.html"""