From df8fcf64103ac3725a83840c5f286bace8421186 Mon Sep 17 00:00:00 2001 From: eyyyyyyy3 <64200003+eyyyyyyy3@users.noreply.github.com> Date: Sun, 26 May 2024 16:04:06 +0200 Subject: [PATCH] Update future-proofing.md | Fixed a typo --- 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