summaryrefslogtreecommitdiff
path: root/rustlings-macros
diff options
context:
space:
mode:
authorEthan <ethdew19@gmail.com>2025-04-08 20:23:11 -0500
committerEthan <ethdew19@gmail.com>2025-04-08 20:23:11 -0500
commitbd3bdd620bce981f648a1c5fcc3efe0a80cf9911 (patch)
treed2a9827955f9b5a8d86e790f42594c2f41ede7d5 /rustlings-macros
parent8b4562e102781a25a2224192d53766c5db596441 (diff)
Fix typo in traits hint
Diffstat (limited to 'rustlings-macros')
-rw-r--r--rustlings-macros/info.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index e705598..f46754d 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -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]]