Skip to content

Commit 3da3fcc

Browse files
committed
Fix the inconsistency of quotation marks
1 parent 605f148 commit 3da3fcc

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
@@ -912,7 +912,7 @@ \subsubsection{Total store order (TSO)}
912912

913913
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}.
914914
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}.
915-
We can say "Thread 1's write to \monobox{x}" happens before "Thread 2's write to \monobox{y}".
915+
We can say ``Thread 1's write to \monobox{x}'' happens before ``Thread 2's write to \monobox{y}''.
916916

917917
\subsubsection{Relaxed memory order (RMO)}
918918

0 commit comments

Comments
 (0)