summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-05 15:52:39 +0100
committerw0rp <devw0rp@gmail.com>2017-07-05 15:52:39 +0100
commit871ce1c8f597331dff46fad70a968fe56c31112f (patch)
tree96d30e24795f46c13569591324d52ce29b890f8a /autoload
parent1bd9b0fbe2b43dfa6716fcbf4cee5dfa4f6b9f1c (diff)
downloadale-871ce1c8f597331dff46fad70a968fe56c31112f.zip
Correct a comment
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/path.vim4
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