summaryrefslogtreecommitdiff
path: root/test/linter/test_cs_csc.vader
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 /test/linter/test_cs_csc.vader
parente4b20544082ba019d8095cbc24ffab43b15e8fc0 (diff)
downloadale-28cff80652f31d72807493487e92f32fe81648bd.zip
codespell: fix spelling errors picked out by `codespell` (#4343)
Diffstat (limited to 'test/linter/test_cs_csc.vader')
-rw-r--r--test/linter/test_cs_csc.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/linter/test_cs_csc.vader b/test/linter/test_cs_csc.vader
index 28d0304a..c01de7fd 100644
--- a/test/linter/test_cs_csc.vader
+++ b/test/linter/test_cs_csc.vader
@@ -13,13 +13,13 @@ Execute(The options should be be used in the command):
AssertLinter 'csc', 'csc /unsafe /out:TEMP /t:module /recurse:' . ale#Escape('*.cs')
-Execute(The souce path should be be used in the command):
+Execute(The source path should be be used in the command):
let g:ale_cs_csc_source = '../foo/bar'
AssertLinterCwd '../foo/bar'
AssertLinter 'csc', 'csc /unsafe /out:TEMP /t:module /recurse:' . ale#Escape('*.cs')
-Execute(The list of search pathes for assemblies should be be used in the command if not empty):
+Execute(The list of search paths for assemblies should be be used in the command if not empty):
let g:ale_cs_csc_assembly_path = ['/usr/lib/mono', '../foo/bar']
AssertLinter 'csc', 'csc /unsafe'