Skip to content

Commit b926e8d

Browse files
authored
Add missing space in mutable_transmutes lint
1 parent bf5b824 commit b926e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_lint/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ impl LateLintPass for MutableTransmutes {
11891189
fn check_expr(&mut self, cx: &LateContext, expr: &hir::Expr) {
11901190
use syntax::abi::Abi::RustIntrinsic;
11911191

1192-
let msg = "mutating transmuted &mut T from &T may cause undefined behavior,\
1192+
let msg = "mutating transmuted &mut T from &T may cause undefined behavior, \
11931193
consider instead using an UnsafeCell";
11941194
match get_transmute_from_to(cx, expr) {
11951195
Some((&ty::TyRef(_, from_mt), &ty::TyRef(_, to_mt))) => {

0 commit comments

Comments
 (0)