From 7c6e1c0be1f87435c9d6c04f73a471ed13a38c4d Mon Sep 17 00:00:00 2001 From: "Yaron M. Minsky" Date: Sun, 11 Feb 2024 17:56:35 -0500 Subject: [PATCH] fix typo --- book/garbage-collector/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/book/garbage-collector/README.md b/book/garbage-collector/README.md index 07758f20f..926534d3a 100644 --- a/book/garbage-collector/README.md +++ b/book/garbage-collector/README.md @@ -573,13 +573,13 @@ Benchmark for mutable, immutable barrier_bench.exe [COLUMN ...] Columns that can be specified are: - time - Number of nano secs taken. - cycles - Number of CPU cycles (RDTSC) taken. - alloc - Allocation of major, minor and promoted words. - gc - Show major and minor collections per 1000 runs. - percentage - Relative execution time as a percentage. - speedup - Relative execution cost as a speedup. - samples - Number of samples collected for profiling. + time - Number of nano secs taken. + cycles - Number of CPU cycles (RDTSC) taken. + alloc - Allocation of major, minor and promoted words. + gc - Show major and minor collections per 1000 runs. + percentage - Relative execution time as a percentage. + speedup - Relative execution cost as a speedup. + samples - Number of samples collected for profiling. ... ``` @@ -590,7 +590,7 @@ be freed when it's no longer in use, either via the GC sweeping it or the program terminating. It's sometimes useful to run extra code just before a value is freed by the GC, for example, to check that a file descriptor has been closed, or that a log message is recorded. [values/finalizer functions -for]{.idx}[finalizers/in grabage collection]{.idx}[garbage +for]{.idx}[finalizers/in garbage collection]{.idx}[garbage collection/finalizer functions]{.idx} ::: {data-type=note}