about summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuietMisdreavus <QuietMisdreavus@users.noreply.github.com>2018-07-18 15:41:13 -0500
committerGitHub <noreply@github.com>2018-07-18 15:41:13 -0500
commit5d5414480c311beee39e945cfd20a79e1be10a0a (patch)
tree50efecaff85079a58dbaaf7e22a857d94967d9f8
parentbce32b532de61434841b7c2ce3085e1f63d6a7a1 (diff)
downloadrust-5d5414480c311beee39e945cfd20a79e1be10a0a.tar.gz
rust-5d5414480c311beee39e945cfd20a79e1be10a0a.zip
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
-rw-r--r--src/librustdoc/html/render.rs1
1 files changed, 0 insertions, 1 deletions
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);