From 1d6065d30a8d25d302f08c7ce28822c63c904167 Mon Sep 17 00:00:00 2001 From: Eva Pace Date: Wed, 5 Jul 2023 10:55:38 -0300 Subject: [PATCH] atomics: add missing space to thread execution example --- src/atomics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atomics.md b/src/atomics.md index 6aef6ae..72a2d56 100644 --- a/src/atomics.md +++ b/src/atomics.md @@ -76,7 +76,7 @@ For instance, say we convince the compiler to emit this logic: ```text initial state: x = 0, y = 1 -THREAD 1 THREAD2 +THREAD 1 THREAD 2 y = 3; if x == 1 { x = 1; y *= 2; }