diff options
author | rhysd <lin90162@yahoo.co.jp> | 2017-10-03 01:11:54 +0900 |
---|---|---|
committer | rhysd <lin90162@yahoo.co.jp> | 2017-10-03 01:11:54 +0900 |
commit | 753592ca6605c8b8f45c5cd08604b514ec644cc3 (patch) | |
tree | b715680462f76b48802749511958f8c04443b993 /autoload | |
parent | e0bd490ed9150c8a229f127dcacbcbf97c9f9861 (diff) | |
download | ale-753592ca6605c8b8f45c5cd08604b514ec644cc3.zip |
Fix typos
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/command.vim | 2 | ||||
-rw-r--r-- | autoload/ale/engine.vim | 2 | ||||
-rw-r--r-- | autoload/ale/job.vim | 2 | ||||
-rw-r--r-- | autoload/ale/linter.vim | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/autoload/ale/command.vim b/autoload/ale/command.vim index f8d04ff2..558fe233 100644 --- a/autoload/ale/command.vim +++ b/autoload/ale/command.vim @@ -28,7 +28,7 @@ function! ale#command#FormatCommand(buffer, command, pipe_file_if_needed) abort " with an ugly string. let l:command = substitute(l:command, '%%', '<<PERCENTS>>', 'g') - " Replace all %s occurences in the string with the name of the current + " Replace all %s occurrences in the string with the name of the current " file. if l:command =~# '%s' let l:filename = fnamemodify(bufname(a:buffer), ':p') diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index 839218b4..29cb44f3 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -573,7 +573,7 @@ function! ale#engine#ProcessChain(buffer, linter, chain_index, input) abort if has_key(a:linter, 'command_chain') while l:chain_index < len(a:linter.command_chain) - " Run a chain of commands, one asychronous command after the other, + " Run a chain of commands, one asynchronous command after the other, " so that many programs can be run in a sequence. let l:chain_item = a:linter.command_chain[l:chain_index] diff --git a/autoload/ale/job.vim b/autoload/ale/job.vim index 1d8b6760..254f4eec 100644 --- a/autoload/ale/job.vim +++ b/autoload/ale/job.vim @@ -1,5 +1,5 @@ " Author: w0rp <devw0rp@gmail.com> -" Deciption: APIs for working with Asynchronous jobs, with an API normalised +" Description: APIs for working with Asynchronous jobs, with an API normalised " between Vim 8 and NeoVim. " " Important functions are described below. They are: diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 2cd773f1..269b0929 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -305,7 +305,7 @@ endfunction function! ale#linter#Get(original_filetypes) abort let l:possibly_duplicated_linters = [] - " Handle dot-seperated filetypes. + " Handle dot-separated filetypes. for l:original_filetype in split(a:original_filetypes, '\.') let l:filetype = ale#linter#ResolveFiletype(l:original_filetype) let l:linter_names = s:GetLinterNames(l:original_filetype) |