From: Elton Date: Mon, 19 Jul 2021 13:14:23 +0000 (+0200) Subject: Fix duplicate checks in clangd comments X-Git-Tag: llvmorg-14-init~1056 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=195786d7c2609f71e81156a09d3a20c98f7ba163;p=platform%2Fupstream%2Fllvm.git Fix duplicate checks in clangd comments This patch removes a duplicate checks in the top-level comments in `clang-tools-extra/clangd/ParsedAST.h` Reviewed By: kadircet Differential Revision: https://reviews.llvm.org/D106227 --- diff --git a/clang-tools-extra/clangd/ParsedAST.h b/clang-tools-extra/clangd/ParsedAST.h index 703ae38..9bb4796 100644 --- a/clang-tools-extra/clangd/ParsedAST.h +++ b/clang-tools-extra/clangd/ParsedAST.h @@ -13,7 +13,7 @@ // we have several customizations: // - preamble handling // - capturing diagnostics for later access -// - running clang-tidy checks checks +// - running clang-tidy checks // //===----------------------------------------------------------------------===//