From 5d5414480c311beee39e945cfd20a79e1be10a0a Mon Sep 17 00:00:00 2001 From: QuietMisdreavus Date: Wed, 18 Jul 2018 15:41:13 -0500 Subject: [PATCH] remove FIXME about macro redirects Based on the discussion in #35705, the rustdoc team has determined that macro redirects are here to stay. Closes #35705 --- src/librustdoc/html/render.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 41c08dbf4ab..3070458d0be 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -1968,7 +1968,6 @@ impl Context { // If the item is a macro, redirect from the old macro URL (with !) // to the new one (without). - // FIXME(#35705) remove this redirect. if item_type == ItemType::Macro { let redir_name = format!("{}.{}!.html", item_type, name); let redir_dst = self.dst.join(redir_name);