From 193309e1c31cc0c6fd4cb79e0e9c3bbb45c3bb29 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Sat, 21 Mar 2026 14:11:24 +1100 Subject: [PATCH] Sort query modifier names in `doc_link!` --- compiler/rustc_macros/src/query.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/compiler/rustc_macros/src/query.rs b/compiler/rustc_macros/src/query.rs index a803d86f2771..1c33c77b8681 100644 --- a/compiler/rustc_macros/src/query.rs +++ b/compiler/rustc_macros/src/query.rs @@ -387,13 +387,15 @@ macro_rules! doc_link { } doc_link!( - arena_cache, - no_hash, + // tidy-alphabetical-start anon, - eval_always, + arena_cache, depth_limit, - separate_provide_extern, + eval_always, feedable, + no_hash, + separate_provide_extern, + // tidy-alphabetical-end ); let name = &query.name;