From 04b11eb4ec0f1f522cda28c588e52faca1a02c1c Mon Sep 17 00:00:00 2001 From: Jingyue Wu Date: Tue, 23 Sep 2014 17:35:28 +0000 Subject: [PATCH] [docs] Fixed a typo in Atomics.rst git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218319 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Atomics.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Atomics.rst b/docs/Atomics.rst index 05234ef7c24..58d1a26d544 100644 --- a/docs/Atomics.rst +++ b/docs/Atomics.rst @@ -177,10 +177,10 @@ Unordered Unordered is the lowest level of atomicity. It essentially guarantees that races produce somewhat sane results instead of having undefined behavior. It also -guarantees the operation to be lock-free, so it do not depend on the data being -part of a special atomic structure or depend on a separate per-process global -lock. Note that code generation will fail for unsupported atomic operations; if -you need such an operation, use explicit locking. +guarantees the operation to be lock-free, so it does not depend on the data +being part of a special atomic structure or depend on a separate per-process +global lock. Note that code generation will fail for unsupported atomic +operations; if you need such an operation, use explicit locking. Relevant standard This is intended to match the Java memory model for shared variables. -- 2.34.1