Skip to content

Commit

Permalink
improve use of , vs ;
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Jan 13, 2016
1 parent 5580b90 commit 0704279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/lint/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0704279

Please sign in to comment.