diff options
| author | QuietMisdreavus <QuietMisdreavus@users.noreply.github.com> | 2018-07-18 15:41:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-18 15:41:13 -0500 |
| commit | 5d5414480c311beee39e945cfd20a79e1be10a0a (patch) | |
| tree | 50efecaff85079a58dbaaf7e22a857d94967d9f8 | |
| parent | bce32b532de61434841b7c2ce3085e1f63d6a7a1 (diff) | |
| download | rust-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.rs | 1 |
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); |
