Skip to content
Snippets Groups Projects
Unverified Commit be572e1e authored by Kirill Bobyrev's avatar Kirill Bobyrev
Browse files

[clangd] NFC: Fix doc typos

parent b16a3b4f
No related branches found
No related tags found
No related merge requests found
......@@ -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.
//
//===----------------------------------------------------------------------===//
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment