diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-12-21 14:41:23 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-12-21 14:41:23 +0100 |
commit | 87a26c5bf169bafbee837e2323f24cfb07e35250 (patch) | |
tree | 326eb21bb10c3d3633b83263d21c85c98f92a67e /indent/verilog.vim | |
parent | 918610d427503c5c7b380eae4a954bd8cb427db5 (diff) | |
download | vim-polyglot-87a26c5bf169bafbee837e2323f24cfb07e35250.tar.gz vim-polyglot-87a26c5bf169bafbee837e2323f24cfb07e35250.zip |
Update
Diffstat (limited to 'indent/verilog.vim')
-rw-r--r-- | indent/verilog.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indent/verilog.vim b/indent/verilog.vim index 77065208..2e5cec01 100644 --- a/indent/verilog.vim +++ b/indent/verilog.vim @@ -80,7 +80,7 @@ function GetVerilogIndent() let vverb = 0 endif - " Indent accoding to last line + " Indent according to last line " End of multiple-line comment if last_line =~ '\*/\s*$' && last_line !~ '/\*.\{-}\*/' let ind = ind - offset_comment1 @@ -223,7 +223,7 @@ function GetVerilogIndent() endif - " Return the indention + " Return the indentation return ind endfunction |