diff --git a/src/librustc_typeck/coherence/orphan.rs b/src/librustc_typeck/coherence/orphan.rs index 0857203b777..5dfe80cfcb2 100644 --- a/src/librustc_typeck/coherence/orphan.rs +++ b/src/librustc_typeck/coherence/orphan.rs @@ -155,7 +155,7 @@ impl<'cx, 'tcx> OrphanChecker<'cx, 'tcx> { // We only want to permit structs/enums, but not *all* structs/enums. // They must be local to the current crate, so that people // can't do `unsafe impl Send for Rc` or - // `unsafe impl !Send for Box`. + // `impl !Send for Box`. Some(self_def_id) => { if self_def_id.krate == ast::LOCAL_CRATE { None