From 3c59832d47aa7209f18a28deea7bdb96073b0a1f Mon Sep 17 00:00:00 2001 From: Shmulik Cohen Date: Thu, 26 Aug 2021 23:38:53 +0300 Subject: [PATCH] update hint for modules2 exercise --- info.toml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/info.toml b/info.toml index 5310d49d..0f68d059 100644 --- a/info.toml +++ b/info.toml @@ -362,11 +362,10 @@ name = "modules2" path = "exercises/modules/modules2.rs" mode = "compile" hint = """ -The delicious_snacks module is trying to present an external -interface (the `fruit` and `veggie` constants) that is different than -its internal structure (the `fruits` and `veggies` modules and -associated constants). It's almost there except for one keyword missing for -each constant.""" +The delicious_snacks module is trying to present an external interface that is +different than its internal structure (the `fruits` and `veggies` modules and +associated constants). Complete the `use` statemants to fit the uses in main and +find the one keyword missing for both constants.""" [[exercises]] name = "modules3" @@ -375,8 +374,7 @@ mode = "compile" hint = """ UNIX_EPOCH and SystemTime are declared in the std::time module. Add a use statement for these two to bring them into scope. You can use nested paths or the glob -operator to bring these two in using only one line. -""" +operator to bring these two in using only one line.""" # COLLECTIONS