From be572e1e1d297039129b0c4ff2deffd817e42f30 Mon Sep 17 00:00:00 2001 From: Kirill Bobyrev Date: Thu, 7 Apr 2022 12:56:56 +0200 Subject: [PATCH] [clangd] NFC: Fix doc typos --- clang-tools-extra/clangd/Config.h | 2 +- clang-tools-extra/clangd/ConfigFragment.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clang-tools-extra/clangd/Config.h b/clang-tools-extra/clangd/Config.h index f84b5ef1ffb5..c693aee56ce5 100644 --- a/clang-tools-extra/clangd/Config.h +++ b/clang-tools-extra/clangd/Config.h @@ -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. // //===----------------------------------------------------------------------===// diff --git a/clang-tools-extra/clangd/ConfigFragment.h b/clang-tools-extra/clangd/ConfigFragment.h index cbaf6deb69de..3c574bace222 100644 --- a/clang-tools-extra/clangd/ConfigFragment.h +++ b/clang-tools-extra/clangd/ConfigFragment.h @@ -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> 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> Remove; /// A Key-Value pair list of options to pass to clang-tidy checks