From decd6fcfecf00b203889059cbd07fd288f6027cc Mon Sep 17 00:00:00 2001 From: Said Aspen <mail@saidaspen.se> Date: Thu, 16 Apr 2020 15:45:54 +0200 Subject: [PATCH] feat: fix typo in struct1 hint --- info.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"""