From 99a0102b21ddd25efa1dd9eb8ced8cc361407ed9 Mon Sep 17 00:00:00 2001 From: tudors Date: Fri, 8 Dec 2023 16:48:12 +0000 Subject: [PATCH] Update background.tex Fix type effects -> affects --- background/background.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/background.tex b/background/background.tex index 45a358a..c3ebc02 100644 --- a/background/background.tex +++ b/background/background.tex @@ -57,7 +57,7 @@ \subsection{Caching} \begin{enumerate} \item Race Conditions! If a value is stored in two different processor caches, then that value should be accessed by a single thread. \item Speed. With a cache, your program may look faster mysteriously. Just assume that reads and writes that either happened recently or are next to each other in memory are fast. -\item Side effects. Every read or write effects the cache state. While most of the time this doesn't help or hurt, it is important to know. Check the Intel programmer guide on the lock prefix for more information. +\item Side effects. Every read or write affects the cache state. While most of the time this doesn't help or hurt, it is important to know. Check the Intel programmer guide on the lock prefix for more information. \end{enumerate} \subsection{Interrupts}