We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ae649 commit 127202dCopy full SHA for 127202d
src/generics/trait-bounds.md
@@ -7,7 +7,7 @@ minutes: 8
7
When working with generics, you often want to require the types to implement
8
some trait, so that you can call this trait's methods.
9
10
-You can do this with `T: Trait` or `impl Trait`:
+You can do this with `T: Trait`:
11
12
```rust,editable
13
fn duplicate<T: Clone>(a: T) -> (T, T) {
0 commit comments