From be99ce0a570c41b3fd471c5d609bd63c25740b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Wed, 10 Jul 2024 20:27:34 +0900 Subject: [PATCH] doc(allocator): Mention `oxc_allocator` --- crates/swc_allocator/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/swc_allocator/src/lib.rs b/crates/swc_allocator/src/lib.rs index 8ed0238693aa..5c6a3917885a 100644 --- a/crates/swc_allocator/src/lib.rs +++ b/crates/swc_allocator/src/lib.rs @@ -1,3 +1,7 @@ +//! Allocator for swc. +//! +//! API designed after [`oxc_allocator`](https://github.com/oxc-project/oxc/tree/725571aad193ec6ba779c820baeb4a7774533ed7/crates/oxc_allocator/src). + use std::ops::{Deref, DerefMut}; use bumpalo::Bump;