File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,7 @@ function GetJavascriptIndent()
377
377
return indent (prevline) + s: case_indent_after
378
378
endif
379
379
380
- " If line starts with operator...
380
+ " If line starts with an operator...
381
381
if (s: Match (v: lnum , s: operator_first ))
382
382
if (s: Match (prevline, s: operator_first ))
383
383
" and so does previous line, don't indent
@@ -395,7 +395,7 @@ function GetJavascriptIndent()
395
395
" otherwise, indent 1 level
396
396
return indent (prevline) + s: sw ()
397
397
end
398
- " If previous line starts with a operator...
398
+ " If previous line starts with an operator...
399
399
elseif s: Match (prevline, s: operator_first ) && ! s: Match (prevline, s: comma_last )
400
400
let counts = s: LineHasOpeningBrackets (prevline)
401
401
if counts[0 ] == ' 2' && counts[1 ] == ' 1'
You can’t perform that action at this time.
0 commit comments