From a93a022cf72fc0892838b4beff45ace7cdc7df99 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Tue, 22 Oct 2024 07:12:44 -0700 Subject: [PATCH] Clarify that "macro attributes" refers to proc macros This also allows for the future possibility of `macro_rules`-based attributes. --- src/attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attributes.md b/src/attributes.md index f3ca9173e..1a316a902 100644 --- a/src/attributes.md +++ b/src/attributes.md @@ -44,7 +44,7 @@ The following attributes are unsafe: Attributes can be classified into the following kinds: * [Built-in attributes] -* [Macro attributes][attribute macros] +* [Proc macro attributes][attribute macros] * [Derive macro helper attributes] * [Tool attributes](#tool-attributes)