From 9c6c38f3a5424414c444fc0a2798ecf862afeff2 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 22 Aug 2023 23:21:09 +0700 Subject: [PATCH] Fix some typos. --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 969d69c..2fc5215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -530,7 +530,7 @@ Released 2019-12-20. from the allocated chunks are slightly different from the old `each_allocated_chunk`: only up to 16-byte alignment is supported now. If you allocate anything with greater alignment than that into the bump arena, there - might be uninitilized padding inserted in the chunks, and therefore it is no + might be uninitialized padding inserted in the chunks, and therefore it is no longer safe to read them via `MaybeUninit::assume_init`. See also the note about bump direction in the "changed" section; if you're iterating chunks, you're likely affected by that change! @@ -569,7 +569,7 @@ Released 2019-05-20. * Fixed a bug where chunks were always deallocated with the default chunk layout, not the layout that the chunk was actually allocated with (i.e. if we - started growing largers chunks with larger layouts, we would deallocate those + started growing larger chunks with larger layouts, we would deallocate those chunks with an incorrect layout). --------------------------------------------------------------------------------