From ccba0ca7e33d5442ca34980f61620acbce6e7225 Mon Sep 17 00:00:00 2001 From: Ttibsi Date: Tue, 17 Jan 2023 17:16:17 +0000 Subject: [PATCH] Update hint for as_ref_mut --- info.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/info.toml b/info.toml index 7418943b..70dbc71f 100644 --- a/info.toml +++ b/info.toml @@ -1160,4 +1160,6 @@ name = "as_ref_mut" path = "exercises/conversions/as_ref_mut.rs" mode = "test" hint = """ -Add AsRef as a trait bound to the functions.""" +Hint 1: Add AsRef as a trait bound to the functions. +Hint 2: This function doesn't need to return anything as it's holding a mutable +reference, but consider the data type you'd want it to hold."""