diff --git a/src/generics/trait-bounds.md b/src/generics/trait-bounds.md index 47e33083..adbd0af0 100644 --- a/src/generics/trait-bounds.md +++ b/src/generics/trait-bounds.md @@ -13,12 +13,13 @@ fn duplicate(a: T) -> (T, T) { fn main() { let foo = String::from("foo"); let pair = duplicate(foo); + println!("{pair:?}"); } ```
-Consider showing a `where` clause syntax. Students can encounter it too when reading code. +Show a `where` clause, students will encounter it when reading code. ```rust,ignore fn duplicate(a: T) -> (T, T)