From 243a6225b4f330e171513cc047b9657b8984c227 Mon Sep 17 00:00:00 2001 From: andylokandy Date: Thu, 24 Jul 2025 20:25:15 +0800 Subject: [PATCH] chore: refine wording --- ...tacksafe-taming-recursion-in-rust-without-stack-overflow.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/post/stacksafe-taming-recursion-in-rust-without-stack-overflow.mdx b/src/content/post/stacksafe-taming-recursion-in-rust-without-stack-overflow.mdx index 46d4dc0..02f929b 100644 --- a/src/content/post/stacksafe-taming-recursion-in-rust-without-stack-overflow.mdx +++ b/src/content/post/stacksafe-taming-recursion-in-rust-without-stack-overflow.mdx @@ -111,7 +111,7 @@ This approach works for simple cases but becomes extremely complex or impossible ### Lower-Level Crates: `stacker` and `recursive` - [stacker](https://crates.io/crates/stacker): Provides low-level stack growth mechanisms -- [recursive](https://crates.io/crates/recursive): Provides a `#[recursive]` to ease the application of `stacker` +- [recursive](https://crates.io/crates/recursive): Provides macro `#[recursive]` to ease the application of `stacker` **Limitations**: