From 8c740eff55ace38abb72c3403ee265c22716affd Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 31 Jul 2022 01:05:17 +0900 Subject: [PATCH] Fix typo in future-proofing.md --- src/future-proofing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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