From f883193311f2d4e5b11573b4d14c5d04aef4dfc3 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Fri, 23 May 2025 15:49:26 +0200 Subject: [PATCH] Fix typo in atomics.md --- src/atomics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atomics.md b/src/atomics.md index 72a2d56..3fd873e 100644 --- a/src/atomics.md +++ b/src/atomics.md @@ -4,7 +4,7 @@ Rust pretty blatantly just inherits the memory model for atomics from C++20. Thi due to this model being particularly excellent or easy to understand. Indeed, this model is quite complex and known to have [several flaws][C11-busted]. Rather, it is a pragmatic concession to the fact that *everyone* is pretty bad -at modeling atomics. At very least, we can benefit from existing tooling and +at modeling atomics. At the very least, we can benefit from existing tooling and research around the C/C++ memory model. (You'll often see this model referred to as "C/C++11" or just "C11". C just copies the C++ memory model; and C++11 was the first version of the model but it has