From 84edd0a9c58b686b566bb724417959e054f8b2db Mon Sep 17 00:00:00 2001 From: Julian Graf Date: Sat, 10 Jan 2026 15:59:30 +0100 Subject: [PATCH] correct typo fix in safe-unsafe-meaning.md --- src/safe-unsafe-meaning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/safe-unsafe-meaning.md b/src/safe-unsafe-meaning.md index f98b8fe..fbc9be9 100644 --- a/src/safe-unsafe-meaning.md +++ b/src/safe-unsafe-meaning.md @@ -141,7 +141,7 @@ against a broken implementation of the trait, then marking the trait `unsafe` is a reasonable choice. As an aside, while `Send` and `Sync` are `unsafe` traits, they are *also* -automatically implemented for types when such derivations are probably safe +automatically implemented for types when such derivations are provably safe to do. `Send` is automatically derived for all types composed only of values whose types also implement `Send`. `Sync` is automatically derived for all types composed only of values whose types also implement `Sync`. This minimizes