Skip to content

Commit db53dbc

Browse files
committed
chore: tidied up unmatched backticks
1 parent a315f2f commit db53dbc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exercises/traits/traits1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Time to implement some traits!
33
//
44
// Your task is to implement the trait
5-
// `AppendBar' for the type `String'.
5+
// `AppendBar` for the type `String`.
66
//
77
// The trait AppendBar has only one function,
88
// which appends "Bar" to any object

exercises/traits/traits2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// traits2.rs
22
//
33
// Your task is to implement the trait
4-
// `AppendBar' for a vector of strings.
4+
// `AppendBar` for a vector of strings.
55
//
66
// To implement this trait, consider for
77
// a moment what it means to 'append "Bar"'

info.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ name = "traits2"
695695
path = "exercises/traits/traits2.rs"
696696
mode = "test"
697697
hint = """
698-
Notice how the trait takes ownership of 'self',and returns `Self'.
698+
Notice how the trait takes ownership of 'self',and returns `Self`.
699699
Try mutating the incoming string vector. Have a look at the tests to see
700700
what the result should look like!
701701

0 commit comments

Comments
 (0)