Correct a comment

This commit is contained in:
w0rp 2017-07-05 15:52:39 +01:00
parent 1bd9b0fbe2
commit 871ce1c8f5
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
" Description: Functions for working with paths in the filesystem.
function! ale#path#Simplify(path) abort
" //foo is turned into / to stop Windows doing stupid things with search
" paths.
" //foo is turned into /foo to stop Windows doing stupid things with
" search paths.
return substitute(simplify(a:path), '^//\+', '/', 'g') " no-custom-checks
endfunction