diff options
author | w0rp <devw0rp@gmail.com> | 2017-07-05 15:52:39 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-07-05 15:52:39 +0100 |
commit | 871ce1c8f597331dff46fad70a968fe56c31112f (patch) | |
tree | 96d30e24795f46c13569591324d52ce29b890f8a /autoload | |
parent | 1bd9b0fbe2b43dfa6716fcbf4cee5dfa4f6b9f1c (diff) | |
download | ale-871ce1c8f597331dff46fad70a968fe56c31112f.zip |
Correct a comment
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/path.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/path.vim b/autoload/ale/path.vim index 8d2c547f..5c8cf74e 100644 --- a/autoload/ale/path.vim +++ b/autoload/ale/path.vim @@ -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 |