There are a few cases on atomic_ops.rst, where a end-of-line colon before a code block seems semantically wrong, because the code block is not related to the sentence before it. End those lines with `. ::` instead, which is rendered as a period but still formats the next line/block as a code block. Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@xxxxxxx> --- Documentation/core-api/atomic_ops.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/core-api/atomic_ops.rst b/Documentation/core-api/atomic_ops.rst index 724583453e1f..650b9693469a 100644 --- a/Documentation/core-api/atomic_ops.rst +++ b/Documentation/core-api/atomic_ops.rst @@ -242,13 +242,13 @@ given atomic counter. They return a boolean indicating whether the resulting counter value was zero or not. Again, these primitives provide explicit memory barrier semantics around -the atomic operation:: +the atomic operation. :: int atomic_sub_and_test(int i, atomic_t *v); This is identical to atomic_dec_and_test() except that an explicit decrement is given instead of the implicit "1". This primitive must -provide explicit memory barrier semantics around the operation:: +provide explicit memory barrier semantics around the operation. :: int atomic_add_negative(int i, atomic_t *v); -- 2.20.1