From f76abb95147bb940ad5d06348c2a65edc6e66a86 Mon Sep 17 00:00:00 2001 From: Jeremy Tregunna Date: Sun, 3 Nov 2019 23:58:53 -0600 Subject: [PATCH] remove errant notice about packed header --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 029305e..b276b32 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,9 @@ Refuse is an implementation of a garbage collector based on the idea of deferring increments, allocating new objects as dead (reference count = 0), and -only marking objects as live, as references can be found. Additionally, the -object header to be used with the collector is packed for compactness. These -three things, should help increase performance substantially over standard -reference count garbage collectors. +only marking objects as live, as references can be found. These three things, +should help increase performance substantially over standard reference count +garbage collectors. ## License