summaryrefslogtreecommitdiff
path: root/exercises/15_traits/traits1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/15_traits/traits1.rs')
-rw-r--r--exercises/15_traits/traits1.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/exercises/15_traits/traits1.rs b/exercises/15_traits/traits1.rs
index c51d3b8..b17c9c6 100644
--- a/exercises/15_traits/traits1.rs
+++ b/exercises/15_traits/traits1.rs
@@ -1,11 +1,6 @@
-// traits1.rs
-//
// Time to implement some traits! Your task is to implement the trait
// `AppendBar` for the type `String`. The trait AppendBar has only one function,
// which appends "Bar" to any object implementing this trait.
-//
-// Execute `rustlings hint traits1` or use the `hint` watch subcommand for a
-// hint.
trait AppendBar {
fn append_bar(self) -> Self;