From 0704279dd366d09f107014027647a64f8bfefed9 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 13 Jan 2016 15:56:53 -0500 Subject: [PATCH] improve use of `,` vs `;` --- src/librustc/lint/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/lint/context.rs b/src/librustc/lint/context.rs index da6e8936eed5d..80eff67170532 100644 --- a/src/librustc/lint/context.rs +++ b/src/librustc/lint/context.rs @@ -446,8 +446,8 @@ pub fn raw_struct_lint<'a>(sess: &'a Session, // Check for future incompatibility lints and issue a stronger warning. if let Some(future_incompatible) = lints.future_incompatible(LintId::of(lint)) { let explanation = format!("this was previously accepted by the compiler \ - but is being phased out, \ - and will become a hard error in a future release!"); + but is being phased out; \ + it will become a hard error in a future release!"); let citation = format!("for more information, see {}", future_incompatible.reference); if let Some(sp) = span {