Skip to content

Commit 81b7ce4

Browse files
committed
Fix the inconsistency of quotation marks
1 parent a48f633 commit 81b7ce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concurrency-primer.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@ \subsubsection{Total store order (TSO)}
12551255

12561256
Once Thread 3 reads \monobox{r1 = 1}, \monobox{r2 = 0}, it indicates that the write \monobox{x = 1} reached shared memory before \monobox{y = 1}.
12571257
If at this point Thread 4 reads \monobox{r3 = 1}, it means both writes \monobox{y = 1} and \monobox{x = 1} are visible to Thread 4, so \monobox{r4} can only be \monobox{1}.
1258-
We can say "Thread 1's write to \monobox{x}" happens before "Thread 2's write to \monobox{y}".
1258+
We can say ``Thread 1's write to \monobox{x}'' happens before ``Thread 2's write to \monobox{y}''.
12591259

12601260
\subsubsection{Relaxed memory order (RMO)}
12611261

0 commit comments

Comments
 (0)