diff --git a/src/generics/trait-bounds.md b/src/generics/trait-bounds.md index 75581414..0dd5e295 100644 --- a/src/generics/trait-bounds.md +++ b/src/generics/trait-bounds.md @@ -7,7 +7,7 @@ minutes: 8 When working with generics, you often want to require the types to implement some trait, so that you can call this trait's methods. -You can do this with `T: Trait` or `impl Trait`: +You can do this with `T: Trait`: ```rust,editable fn duplicate(a: T) -> (T, T) {