diff options
Diffstat (limited to 'exercises/traits')
| -rw-r--r-- | exercises/traits/traits1.rs | 2 | ||||
| -rw-r--r-- | exercises/traits/traits2.rs | 2 |
2 files changed, 2 insertions, 2 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"' |
