summaryrefslogtreecommitdiff
path: root/exercises/traits/traits2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/traits/traits2.rs')
-rw-r--r--exercises/traits/traits2.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/traits/traits2.rs b/exercises/traits/traits2.rs
index 708bb19..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"'
@@ -17,7 +17,7 @@ trait AppendBar {
fn append_bar(self) -> Self;
}
-//TODO: Add your code here
+// TODO: Implement trait `AppendBar` for a vector of strings.
#[cfg(test)]
mod tests {