diff options
| author | skaunov <65976143+skaunov@users.noreply.github.com> | 2022-09-13 16:33:03 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-13 16:33:03 +0300 |
| commit | 3028d1395cfa1bc2dbf49f7678d8f083e9042a56 (patch) | |
| tree | 875a78da1402f959bce45989405a2e971ddccbd0 | |
| parent | b85b8de232865c2d372c933676d0d31b7d1834a2 (diff) | |
Add link to `std` in `strings3` hint
Seems like it's the first place, where `std` is introduced in Rustlings, and it's a good place to facilitate docs discovery for user. As _the book_ seems to have no Rustlings-sized solutions for this exercise.
| -rw-r--r-- | info.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -449,7 +449,7 @@ path = "exercises/strings/strings3.rs" mode = "test" hint = """ There's tons of useful standard library functions for strings. Let's try and use some of -them! +them: <https://doc.rust-lang.org/std/string/struct.String.html#method.trim>! For the compose_me method: You can either use the `format!` macro, or convert the string slice into an owned string, which you can then freely extend.""" |
