diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-10-22 12:43:50 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-10-22 12:43:50 -0400 |
| commit | b51d5e10b23faaec609cd3ee9b2662b84625ef64 (patch) | |
| tree | d317771e907b58ba09e45e507ec6836c749eb427 /src | |
| parent | 7aa39a60ddc8bcf43dd5c51754da9a681335156f (diff) | |
| parent | 6003b479a01b4cc5d60b9293aa5f46992331f01e (diff) | |
| download | rust-b51d5e10b23faaec609cd3ee9b2662b84625ef64.tar.gz rust-b51d5e10b23faaec609cd3ee9b2662b84625ef64.zip | |
Rollup merge of #29230 - tsion:fix-nomicon-typo-2, r=steveklabnik
r? @steveklabnik
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/nomicon/atomics.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/nomicon/atomics.md b/src/doc/nomicon/atomics.md index 08f0de4f006..1efca08abd0 100644 --- a/src/doc/nomicon/atomics.md +++ b/src/doc/nomicon/atomics.md @@ -1,11 +1,11 @@ % Atomics Rust pretty blatantly just inherits C11's memory model for atomics. This is not -due 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 research around -C. +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 +research around C. Trying to fully explain the model in this book is fairly hopeless. It's defined in terms of madness-inducing causality graphs that require a full book to |
