Merge pull request #2232 from ethdew19/main

Fix typo in traits hint
This commit is contained in:
Mo Bitar 2025-04-29 21:34:47 +02:00 committed by GitHub
commit fa91814aa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -763,7 +763,7 @@ hint = """
Notice how the trait takes ownership of `self` and returns `Self`. Notice how the trait takes ownership of `self` and returns `Self`.
Although the signature of `append_bar` in the trait takes `self` as argument, 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.""" the value is owned anyway."""
[[exercises]] [[exercises]]