mutex-atomic: make lint adhere to lint message convention

This commit is contained in:
Matthias Krüger 2020-08-11 12:10:42 +02:00
parent ac194cafc1
commit 04867e004e
2 changed files with 9 additions and 9 deletions

View file

@ -72,8 +72,8 @@ impl<'tcx> LateLintPass<'tcx> for Mutex {
let mutex_param = subst.type_at(0);
if let Some(atomic_name) = get_atomic_name(mutex_param) {
let msg = format!(
"Consider using an `{}` instead of a `Mutex` here. If you just want the locking \
behavior and not the internal type, consider using `Mutex<()>`.",
"consider using an `{}` instead of a `Mutex` here; if you just want the locking \
behavior and not the internal type, consider using `Mutex<()>`",
atomic_name
);
match mutex_param.kind {