summaryrefslogtreecommitdiff
path: root/rustlings-macros
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-08 23:42:15 +0200
committermo8it <mo8it@proton.me>2024-06-08 23:42:15 +0200
commit98db5790144a0d32009718e54051b3f7d54ae494 (patch)
tree69983a40b9b68db7c0bab34b9234aba06b28de95 /rustlings-macros
parent0338b1cbdfa567d5f9580afef1d4483c7d275c32 (diff)
primitive_types4 solution
Diffstat (limited to 'rustlings-macros')
-rw-r--r--rustlings-macros/info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index fc0bee8..313ba6f 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -267,8 +267,8 @@ dir = "04_primitive_types"
hint = """
Take a look at the 'Understanding Ownership -> Slices -> Other Slices' section
of the book: https://doc.rust-lang.org/book/ch04-03-slices.html and use the
-starting and ending (plus one) indices of the items in the `Array` that you
-want to end up in the slice.
+starting and ending (plus one) indices of the items in the array that you want
+to end up in the slice.
If you're curious why the first argument of `assert_eq!` does not have an
ampersand for a reference since the second argument is a reference, take a look