Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/future-proofing.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ struct Bad<T: Clone + Debug + PartialEq> { /* ... */ }
```

Duplicating derived traits as bounds on `Bad` is unnecessary and a
backwards-compatibiliity hazard. To illustrate this point, consider deriving
backwards-compatibility hazard. To illustrate this point, consider deriving
`PartialOrd` on the structures in the previous example:

```rust
Expand Down