We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5b824 commit b926e8dCopy full SHA for b926e8d
src/librustc_lint/builtin.rs
@@ -1189,7 +1189,7 @@ impl LateLintPass for MutableTransmutes {
1189
fn check_expr(&mut self, cx: &LateContext, expr: &hir::Expr) {
1190
use syntax::abi::Abi::RustIntrinsic;
1191
1192
- let msg = "mutating transmuted &mut T from &T may cause undefined behavior,\
+ let msg = "mutating transmuted &mut T from &T may cause undefined behavior, \
1193
consider instead using an UnsafeCell";
1194
match get_transmute_from_to(cx, expr) {
1195
Some((&ty::TyRef(_, from_mt), &ty::TyRef(_, to_mt))) => {
0 commit comments