File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
//
18
18
// Because this structure is shared throughout clangd, it's a potential source
19
19
// of layering problems. Config should be expressed in terms of simple
20
- // vocubulary types where possible.
20
+ // vocabulary types where possible.
21
21
//
22
22
// ===----------------------------------------------------------------------===//
23
23
Original file line number Diff line number Diff line change @@ -235,14 +235,14 @@ struct Fragment {
235
235
// / Controls how clang-tidy will run over the code base.
236
236
// /
237
237
// / The settings are merged with any settings found in .clang-tidy
238
- // / configiration files with these ones taking precedence.
238
+ // / configuration files with these ones taking precedence.
239
239
struct ClangTidyBlock {
240
240
std::vector<Located<std::string>> Add;
241
241
// / List of checks to disable.
242
242
// / Takes precedence over Add. To enable all llvm checks except include
243
243
// / order:
244
244
// / Add: llvm-*
245
- // / Remove: llvm-include-onder
245
+ // / Remove: llvm-include-order
246
246
std::vector<Located<std::string>> Remove;
247
247
248
248
// / A Key-Value pair list of options to pass to clang-tidy checks
You can’t perform that action at this time.
0 commit comments