summaryrefslogtreecommitdiff
path: root/test/linter/test_cs_csc.vader
diff options
context:
space:
mode:
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'