1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-28 06:26:07 +02:00

Merge pull request #1754 from raymon-roos/fix/traits-03-hint

fix(traits3): grammar mistake in the hint for traits3
This commit is contained in:
liv 2023-11-06 12:39:38 +01:00 committed by GitHub
commit 4ecc35131c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -808,7 +808,7 @@ mode = "test"
hint = """
Traits can have a default implementation for functions. Structs that implement
the trait can then use the default version of these functions if they choose not
implement the function themselves.
to implement the function themselves.
See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#default-implementations
"""