diff options
-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 "); } |