diff options
| author | mo8it <mo8it@proton.me> | 2024-07-08 15:20:56 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-07-08 15:20:56 +0200 |
| commit | 08c408aae042509526e8cc1f175e7a010836f53d (patch) | |
| tree | 7138d59974d3b7c02efa87d3f1f5cc7a9ada393e /rustlings-macros/info.toml | |
| parent | bf698659b07bab2d6d4997e2637f1d304a293c5b (diff) | |
Add hint about string concatination with +
Diffstat (limited to 'rustlings-macros/info.toml')
| -rw-r--r-- | rustlings-macros/info.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index 715778d..c9fc65a 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -585,7 +585,7 @@ https://doc.rust-lang.org/book/ch08-03-hash-maps.html#updating-a-value-based-on- [[exercises]] name = "quiz2" dir = "quizzes" -hint = "No hints this time ;)" +hint = "The `+` operator can concatinate a `String` with a `&str`." # OPTIONS @@ -748,7 +748,9 @@ name = "traits1" dir = "15_traits" hint = """ More about traits in The Book: -https://doc.rust-lang.org/book/ch10-02-traits.html""" +https://doc.rust-lang.org/book/ch10-02-traits.html + +The `+` operator can concatinate a `String` with a `&str`.""" [[exercises]] name = "traits2" |
