diff options
Diffstat (limited to 'erts/emulator/beam/hash.c')
-rw-r--r-- | erts/emulator/beam/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/hash.c b/erts/emulator/beam/hash.c index 177b7cc3d1..896c5a5ce3 100644 --- a/erts/emulator/beam/hash.c +++ b/erts/emulator/beam/hash.c @@ -110,7 +110,7 @@ static ERTS_INLINE void set_thresholds(Hash* h) if (h->shift < h->max_shift) h->shrink_threshold = hash_get_slots(h) / 5; /* shrink at 20% load */ else - h->shrink_threshold = -1; /* never shrink below inital size */ + h->shrink_threshold = -1; /* never shrink below initial size */ } /* |