summaryrefslogtreecommitdiff
path: root/exercises/15_traits/traits3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/15_traits/traits3.rs')
-rw-r--r--exercises/15_traits/traits3.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/exercises/15_traits/traits3.rs b/exercises/15_traits/traits3.rs
index 8412afa..9a2365a 100644
--- a/exercises/15_traits/traits3.rs
+++ b/exercises/15_traits/traits3.rs
@@ -1,12 +1,7 @@
-// traits3.rs
-//
// Your task is to implement the Licensed trait for both structures and have
// them return the same information without writing the same function twice.
//
// Consider what you can add to the Licensed trait.
-//
-// Execute `rustlings hint traits3` or use the `hint` watch subcommand for a
-// hint.
pub trait Licensed {
fn licensing_info(&self) -> String;