1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-05-23 22:40:20 +02:00

Fix typo in traits hint

This commit is contained in:
Ethan 2025-04-08 20:23:11 -05:00
parent 8b4562e102
commit bd3bdd620b

View File

@ -763,7 +763,7 @@ hint = """
Notice how the trait takes ownership of `self` and returns `Self`.
Although the signature of `append_bar` in the trait takes `self` as argument,
the implementation can take `mut self` instead. This is possible because the
the implementation can take `mut self` instead. This is possible because
the value is owned anyway."""
[[exercises]]