diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-12-29 13:28:10 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-12-29 13:28:10 +0000 |
commit | 1daf4cbc74a7b434868db97d169a499bfabc9136 (patch) | |
tree | 49e49450120f08938f953f2df57b30b60db8845d /clang-tools-extra/docs/clang-tidy | |
parent | 80821ee77cbdb164428bbabe88a75ec13d1d7faa (diff) | |
download | bcm5719-llvm-1daf4cbc74a7b434868db97d169a499bfabc9136.tar.gz bcm5719-llvm-1daf4cbc74a7b434868db97d169a499bfabc9136.zip |
[clang-tidy] Fix capitalization of the message in the example
llvm-svn: 256559
Diffstat (limited to 'clang-tools-extra/docs/clang-tidy')
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst index ab36389dfd8..6dce4102bb5 100644 --- a/clang-tools-extra/docs/clang-tidy/index.rst +++ b/clang-tools-extra/docs/clang-tidy/index.rst @@ -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 "); } |