From 17358d1d2152710feb911fe1c02fcaeba3de4b17 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 9 Mar 2015 14:39:31 -0400 Subject: [PATCH] Address nit by @flaper87 --- src/librustc_typeck/coherence/orphan.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_typeck/coherence/orphan.rs b/src/librustc_typeck/coherence/orphan.rs index 0857203b777a..5dfe80cfcb21 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