[clangd] NFC: Fix doc typos

This commit is contained in:
Kirill Bobyrev 2022-04-07 12:56:56 +02:00
parent b16a3b4f3b
commit be572e1e1d
No known key found for this signature in database
GPG Key ID: 2307C055C8384FA0
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
//
// Because this structure is shared throughout clangd, it's a potential source
// of layering problems. Config should be expressed in terms of simple
// vocubulary types where possible.
// vocabulary types where possible.
//
//===----------------------------------------------------------------------===//

View File

@ -235,14 +235,14 @@ struct Fragment {
/// Controls how clang-tidy will run over the code base.
///
/// The settings are merged with any settings found in .clang-tidy
/// configiration files with these ones taking precedence.
/// configuration files with these ones taking precedence.
struct ClangTidyBlock {
std::vector<Located<std::string>> Add;
/// List of checks to disable.
/// Takes precedence over Add. To enable all llvm checks except include
/// order:
/// Add: llvm-*
/// Remove: llvm-include-onder
/// Remove: llvm-include-order
std::vector<Located<std::string>> Remove;
/// A Key-Value pair list of options to pass to clang-tidy checks