diff --git a/src/future-proofing.md b/src/future-proofing.md index e34edd5..7f61ab4 100644 --- a/src/future-proofing.md +++ b/src/future-proofing.md @@ -146,7 +146,7 @@ struct Bad { /* ... */ } ``` 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