Skip to content

Commit

Permalink
chore: tidied up unmatched backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
tkburis committed Nov 24, 2022
1 parent a315f2f commit db53dbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/traits/traits1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exercises/traits/traits2.rs
Original file line number Diff line number Diff line change
@@ -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"'
Expand Down
2 changes: 1 addition & 1 deletion info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit db53dbc

Please sign in to comment.