From 01a5e5d74aaf9c9fc09cbb3836576f4ff04731f7 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:46:13 +0000 Subject: [PATCH] docs(allocator): improve docs for `HashMap` (#8616) Clarify docs for `HashMap` on `Drop` restriction. --- crates/oxc_allocator/src/hash_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_allocator/src/hash_map.rs b/crates/oxc_allocator/src/hash_map.rs index 125f2f91c..56e90caf6 100644 --- a/crates/oxc_allocator/src/hash_map.rs +++ b/crates/oxc_allocator/src/hash_map.rs @@ -45,7 +45,7 @@ type FxHashMap<'alloc, K, V> = hashbrown::HashMap(ManuallyDrop>);