Merge pull request #1978 from jkauerl/main

Change hints of exercises traits4 and traits5 for a better learning experience
This commit is contained in:
Mo 2024-05-29 20:44:55 +02:00 committed by GitHub
commit d140d49b61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -816,7 +816,7 @@ path = "exercises/15_traits/traits4.rs"
mode = "test" mode = "test"
hint = """ hint = """
Instead of using concrete types as parameters you can use traits. Try replacing Instead of using concrete types as parameters you can use traits. Try replacing
the '??' with 'impl <what goes here?>' the '??' with 'impl [what goes here?]'
See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
""" """
@ -827,7 +827,7 @@ path = "exercises/15_traits/traits5.rs"
mode = "compile" mode = "compile"
hint = """ hint = """
To ensure a parameter implements multiple traits use the '+ syntax'. Try To ensure a parameter implements multiple traits use the '+ syntax'. Try
replacing the '??' with 'impl <> + <>'. replacing the '??' with 'impl [what goes here?] + [what goes here?]'.
See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#specifying-multiple-trait-bounds-with-the--syntax See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#specifying-multiple-trait-bounds-with-the--syntax
""" """