aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/detect_indent.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/detect_indent.vim b/autoload/detect_indent.vim
index ab3f485..6354843 100644
--- a/autoload/detect_indent.vim
+++ b/autoload/detect_indent.vim
@@ -35,7 +35,7 @@ function! detect_indent#() abort
for line in getline(1, total)
" If there are leading tabs, we'll call this a tab-indented line; bump the
- " appropriate count, and skip the rest of the loop.
+ " appropriate count, and skip the rest of this iteration of the loop.
"
if matchstr(line, '^\t*') !=# ''
let tabs += 1