summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exercises/traits/traits1.rs2
-rw-r--r--exercises/traits/traits2.rs2
-rw-r--r--info.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/exercises/traits/traits1.rs b/exercises/traits/traits1.rs
index 43500b8..f5320a5 100644
--- a/exercises/traits/traits1.rs
+++ b/exercises/traits/traits1.rs
@@ -2,7 +2,7 @@
// Time to implement some traits!
//
// Your task is to implement the trait
-// `AppendBar' for the type `String'.
+// `AppendBar` for the type `String`.
//
// The trait AppendBar has only one function,
// which appends "Bar" to any object
diff --git a/exercises/traits/traits2.rs b/exercises/traits/traits2.rs
index 99dc1cb..288b498 100644
--- a/exercises/traits/traits2.rs
+++ b/exercises/traits/traits2.rs
@@ -1,7 +1,7 @@
// traits2.rs
//
// Your task is to implement the trait
-// `AppendBar' for a vector of strings.
+// `AppendBar` for a vector of strings.
//
// To implement this trait, consider for
// a moment what it means to 'append "Bar"'
diff --git a/info.toml b/info.toml
index df3820d..4b87819 100644
--- a/info.toml
+++ b/info.toml
@@ -695,7 +695,7 @@ name = "traits2"
path = "exercises/traits/traits2.rs"
mode = "test"
hint = """
-Notice how the trait takes ownership of 'self',and returns `Self'.
+Notice how the trait takes ownership of 'self',and returns `Self`.
Try mutating the incoming string vector. Have a look at the tests to see
what the result should look like!