diff options
author | Stefan Weil <sw@weilnetz.de> | 2024-03-31 18:15:26 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2024-04-02 13:38:40 +0300 |
commit | f6822fee969aed8662baa4fdc38e6aeced3894ad (patch) | |
tree | 92a9e5ae1e39237ffed850253dcc877946929af2 /docs/devel/atomics.rst | |
parent | 9988c7b50e0ebd93a8ac10d7da6890d05971e98e (diff) |
Fix some typos in documentation (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'docs/devel/atomics.rst')
-rw-r--r-- | docs/devel/atomics.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/atomics.rst b/docs/devel/atomics.rst index ff9b5ee30c..b77c6e13e1 100644 --- a/docs/devel/atomics.rst +++ b/docs/devel/atomics.rst @@ -119,7 +119,7 @@ The only guarantees that you can rely upon in this case are: ordinary accesses instead cause data races if they are concurrent with other accesses of which at least one is a write. In order to ensure this, the compiler will not optimize accesses out of existence, create unsolicited - accesses, or perform other similar optimzations. + accesses, or perform other similar optimizations. - acquire operations will appear to happen, with respect to the other components of the system, before all the LOAD or STORE operations |