summaryrefslogtreecommitdiff
path: root/rustlings-macros/info.toml
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-22 13:24:06 +0200
committermo8it <mo8it@proton.me>2024-06-22 13:24:06 +0200
commit98cd00de6378550985d819ac8cd1227c8a10818e (patch)
treefe9d6d460813a043f7abbac7e063ce46c432b7af /rustlings-macros/info.toml
parentecbe9b7324364e94f7c6b4a4dd279fb90f5a938e (diff)
modules2 solution
Diffstat (limited to 'rustlings-macros/info.toml')
-rw-r--r--rustlings-macros/info.toml11
1 files changed, 6 insertions, 5 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index 97d7e07..ba414e3 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -535,12 +535,13 @@ name = "modules2"
dir = "10_modules"
test = false
hint = """
-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` statements to fit the uses in main and
-find the one keyword missing for both constants.
+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` statements to fit the uses in
+`main` and find the one keyword missing for both constants.
-Learn more at https://doc.rust-lang.org/book/ch07-04-bringing-paths-into-scope-with-the-use-keyword.html#re-exporting-names-with-pub-use"""
+Learn more in The Book:
+https://doc.rust-lang.org/book/ch07-04-bringing-paths-into-scope-with-the-use-keyword.html#re-exporting-names-with-pub-use"""
[[exercises]]
name = "modules3"