From e79026b376dcc9a7669bc4457663c0f4069e5c37 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Sat, 18 Apr 2026 19:51:04 +0200 Subject: [PATCH] typo --- src/behavior-considered-undefined.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/behavior-considered-undefined.md b/src/behavior-considered-undefined.md index 068fd6ab0e..cd85a03255 100644 --- a/src/behavior-considered-undefined.md +++ b/src/behavior-considered-undefined.md @@ -16,7 +16,7 @@ called *sound*; if `unsafe` code can be misused by safe code to exhibit undefined behavior, it is *unsound*. > [!WARNING] -> The following list is not exhaustive; it may grow or shrink. There is no formal model of Rust's semantics for what is and is not allowed in unsafe code, so there may be more behavior considered unsafe. We also reserve the right to make some of the behavior in that list defined in the future. In other words, this list does not say that anything will *definitely* always be undefined in all future Rust version (but we might make such commitments for some list items in the future). +> The following list is not exhaustive; it may grow or shrink. There is no formal model of Rust's semantics for what is and is not allowed in unsafe code, so there may be more behavior considered unsafe. We also reserve the right to make some of the behavior in that list defined in the future. In other words, this list does not say that anything will *definitely* always be undefined in all future Rust versions (but we might make such commitments for some list items in the future). > > Please read the [Rustonomicon] before writing unsafe code.