summaryrefslogtreecommitdiff
path: root/ale_linters/cpp
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@users.noreply.github.com>2022-10-29 11:56:09 +0000
committerGitHub <noreply@github.com>2022-10-29 20:56:09 +0900
commit28cff80652f31d72807493487e92f32fe81648bd (patch)
tree2714193a64bd5e075c2f2ea0d11c1f655a144bd4 /ale_linters/cpp
parente4b20544082ba019d8095cbc24ffab43b15e8fc0 (diff)
downloadale-28cff80652f31d72807493487e92f32fe81648bd.zip
codespell: fix spelling errors picked out by `codespell` (#4343)
Diffstat (limited to 'ale_linters/cpp')
-rw-r--r--ale_linters/cpp/clangtidy.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/cpp/clangtidy.vim b/ale_linters/cpp/clangtidy.vim
index d6944aae..fa9f8e31 100644
--- a/ale_linters/cpp/clangtidy.vim
+++ b/ale_linters/cpp/clangtidy.vim
@@ -26,7 +26,7 @@ function! ale_linters#cpp#clangtidy#GetCommand(buffer, output) abort
" Tell clang-tidy a .h header with a C++ filetype in Vim is a C++ file
" only when compile-commands.json file is not there. Adding these
- " flags makes clang-tidy completely ignore compile commmands.
+ " flags makes clang-tidy completely ignore compile commands.
if expand('#' . a:buffer) =~# '\.h$'
let l:options .= !empty(l:options) ? ' -x c++' : '-x c++'
endif