[clang-tidy] Fix capitalization of the message in the example

llvm-svn: 256559
This commit is contained in:
Alexander Kornienko 2015-12-29 13:28:10 +00:00
parent 80821ee77c
commit 1daf4cbc74
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ can further inspect them and report diagnostics.
if (Ctor->getNumParams() == 0 || Ctor->getMinRequiredArguments() > 1)
return;
SourceLocation Loc = Ctor->getLocation();
diag(Loc, "Single-argument constructors must be explicit")
diag(Loc, "single-argument constructors must be explicit")
<< FixItHint::CreateInsertion(Loc, "explicit ");
}