Skip to content

Commit b049ed6

Browse files
authored
Rollup merge of rust-lang#98692 - camelid:more-fixmes, r=GuillaumeGomez
rustdoc: Cleanup more FIXMEs r? ``@GuillaumeGomez``
2 parents 93ce6fd + 2d2fd31 commit b049ed6

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/librustdoc/clean/mod.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1705,8 +1705,8 @@ fn clean_ty<'tcx>(this: Ty<'tcx>, cx: &mut DocContext<'tcx>, def_id: Option<DefI
17051705
ImplTrait(bounds)
17061706
}
17071707

1708-
ty::Closure(..) | ty::Generator(..) => Tuple(vec![]), // FIXME(pcwalton)
1709-
1708+
ty::Closure(..) => panic!("Closure"),
1709+
ty::Generator(..) => panic!("Generator"),
17101710
ty::Bound(..) => panic!("Bound"),
17111711
ty::Placeholder(..) => panic!("Placeholder"),
17121712
ty::GeneratorWitness(..) => panic!("GeneratorWitness"),
@@ -1760,7 +1760,6 @@ fn is_field_vis_inherited(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
17601760
match tcx.def_kind(parent) {
17611761
DefKind::Struct | DefKind::Union => false,
17621762
DefKind::Variant => true,
1763-
// FIXME: what about DefKind::Ctor?
17641763
parent_kind => panic!("unexpected parent kind: {:?}", parent_kind),
17651764
}
17661765
}

src/librustdoc/config.rs

-3
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,6 @@ pub(crate) struct RenderOptions {
237237
pub(crate) resource_suffix: String,
238238
/// Whether to run the static CSS/JavaScript through a minifier when outputting them. `true` by
239239
/// default.
240-
//
241-
// FIXME(misdreavus): the flag name is `--disable-minification` but the meaning is inverted
242-
// once read.
243240
pub(crate) enable_minification: bool,
244241
/// Whether to create an index page in the root of the output directory. If this is true but
245242
/// `enable_index_page` is None, generate a static listing of crates instead.

0 commit comments

Comments
 (0)