commit e9da826f95d50835e283dc8215e3748ab72ae5e5 (tree)
parent aa2882adc0b6f3894821835ac6114f4014cf86a0
Author: YohananDiamond <mitonanan12@gmail.com>
Date: Sun, 13 Jun 2021 17:15:37 -0300
Another typo fix: "try treat them" -> "try treating them"
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/indent/zig.vim b/indent/zig.vim
@@ -48,7 +48,7 @@ function! GetZigIndent(lnum)
" for lines that look like
" },
" };
- " try treat them the same as a }
+ " try treating them the same as a }
if prevLine =~ '\v^\s*},$'
if currentLine =~ '\v^\s*};$' || currentLine =~ '\v^\s*}$'
return indent(prevLineNum) - 4