diff options
Diffstat (limited to 'indent/ada.vim')
-rw-r--r-- | indent/ada.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indent/ada.vim b/indent/ada.vim index 1127ca11..261d2af4 100644 --- a/indent/ada.vim +++ b/indent/ada.vim @@ -223,7 +223,7 @@ function GetAdaIndent() " Move indent in twice (next 'when' will move back) let ind = ind + 2 * shiftwidth() elseif line =~ '^\s*end\s*record\>' - " Move indent back to tallying 'type' preceeding the 'record'. + " Move indent back to tallying 'type' preceding the 'record'. " Allow indent to be equal to 'end record's. let ind = s:MainBlockIndent( ind+shiftwidth(), lnum, 'type\>', '' ) elseif line =~ '\(^\s*new\>.*\)\@<!)\s*[;,]\s*$' |