summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Hack <18036720+willhack@users.noreply.github.com>2023-07-02 13:46:59 -0400
committerWill Hack <18036720+willhack@users.noreply.github.com>2023-07-02 13:46:59 -0400
commitb99c7b8c37b7f95d450ad3fa5461a9398c0f7819 (patch)
tree993ae6e81aaa4e11f6e5c4d6d256724e5e3a0fdf
parentc2264cabae976cf534be08942ff33f3a58f8795e (diff)
chore: update line reference in strings2 hint
-rw-r--r--info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.toml b/info.toml
index ba3e585..05012cf 100644
--- a/info.toml
+++ b/info.toml
@@ -439,7 +439,7 @@ mode = "compile"
hint = """
Yes, it would be really easy to fix this by just changing the value bound to `word` to be a
string slice instead of a `String`, wouldn't it?? There is a way to add one character to line
-9, though, that will coerce the `String` into a string slice.
+12, though, that will coerce the `String` into a string slice.
Side note: If you're interested in learning about how this kind of reference conversion works, you can jump ahead in the book and read this part in the smart pointers chapter: https://doc.rust-lang.org/stable/book/ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods"""