Rollup merge of #52510 - QuietMisdreavus:redirects-are-cool, r=nrc

rustdoc: 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
This commit is contained in:
kennytm 2018-07-19 05:46:10 +08:00
commit ae9c550415
No known key found for this signature in database
GPG Key ID: FEF6C8051D0E013C
1 changed files with 0 additions and 1 deletions

View File

@ -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);