Browse Source

fix typo in Generational Collection section

Brian Leung 1 year ago
parent
commit
84c488594a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      book.tex

+ 1 - 1
book.tex

@@ -14767,7 +14767,7 @@ significant runtime overhead because the call to \code{collect} takes
 time proportional to all the live data. One way to reduce this
 time proportional to all the live data. One way to reduce this
 overhead is to reduce how much data is inspected in each call to
 overhead is to reduce how much data is inspected in each call to
 \code{collect}. In particular, researchers have observed that recently
 \code{collect}. In particular, researchers have observed that recently
-allocated data is more likely to become garbage then data that has
+allocated data is more likely to become garbage than data that has
 survived one or more previous calls to \code{collect}. This insight
 survived one or more previous calls to \code{collect}. This insight
 motivated the creation of \emph{generational garbage collectors}
 motivated the creation of \emph{generational garbage collectors}
 \index{subject}{generational garbage collector} that
 \index{subject}{generational garbage collector} that