summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorAlexandruGG <alex.gidei@goodlord.co>2020-05-27 10:03:59 +0100
committerAlexandruGG <alex.gidei@goodlord.co>2020-05-27 10:03:59 +0100
commitdf81141d6fb3f43a7a035c4efc1150b6ede0b472 (patch)
tree2d40a3a370d6a04a0f13bd3e17e854b5638dc9be /info.toml
parent7479a4737bdcac347322ad0883ca528c8675e720 (diff)
Address PR feedback: add tests
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/info.toml b/info.toml
index dcd93bf..842253c 100644
--- a/info.toml
+++ b/info.toml
@@ -617,17 +617,17 @@ hint = """
[[exercises]]
name = "box1"
path = "exercises/standard_library_types/box1.rs"
-mode = "compile"
+mode = "test"
hint = """
Step 1
The compiler's message should help: since we cannot store the value of the actual type
when working with recursive types, we need to store a reference (pointer) to its value.
-We should therefore place our `List` inside a `Box`. More details in the book here:
+We should, therefore, place our `List` inside a `Box`. More details in the book here:
https://doc.rust-lang.org/book/ch15-01-box.html#enabling-recursive-types-with-boxes
Step 2
Creating an empty list should be fairly straightforward (hint: peek at the assertions).
-For a non-empty list keep in mind that wee want to use our Cons "list builder".
+For a non-empty list keep in mind that we want to use our Cons "list builder".
Although the current list is one of integers (i32), feel free to change the definition
and try other types!
"""