Skip to content

Commit

Permalink
Rollup merge of rust-lang#52510 - QuietMisdreavus:redirects-are-cool,…
Browse files Browse the repository at this point in the history
… r=nrc

rustdoc: remove FIXME about macro redirects

Based on the discussion in rust-lang#35705, the rustdoc team has determined that macro redirects are here to stay.

Closes rust-lang#35705
  • Loading branch information
kennytm committed Jul 18, 2018
2 parents 8336f1b + 5d54144 commit ae9c550
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/librustdoc/html/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ae9c550

Please sign in to comment.