[clang-tidy][docs] Fix wrong url in DontModifyStdNamespaceCheck

It was probably a copy-paste mistake.
The check was added as `cert-dcl58-cpp`, so the doc should point there.

Reviewed By: aaron.ballman

Differential Revision: https://reviews.llvm.org/D121373
This commit is contained in:
Balazs Benics 2022-03-13 17:51:00 +01:00
parent d321f09926
commit 665879b9e7

View file

@ -19,7 +19,7 @@ namespace cert {
/// This check warns for such modifications.
///
/// For the user-facing documentation see:
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-msc53-cpp.html
/// https://clang.llvm.org/extra/clang-tidy/checks/cert-dcl58-cpp.html
class DontModifyStdNamespaceCheck : public ClangTidyCheck {
public:
DontModifyStdNamespaceCheck(StringRef Name, ClangTidyContext *Context)