forked from OSchip/llvm-project
[clang-tidy] Fix capitalization of the message in the example
llvm-svn: 256559
This commit is contained in:
parent
80821ee77c
commit
1daf4cbc74
|
@ -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 ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue