diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-08-24 22:13:56 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-08-24 22:13:56 -0400 |
commit | 92d27b7290914585f11d3a07e9bbbc504b8c9ca1 (patch) | |
tree | 6063d3d94af147d2d48d70c8201ef3d81a3c9787 /runtime/indent/ada.vim | |
parent | 3623a028263fa321f0790fe1132ac2934d6d5dc7 (diff) | |
parent | a1582a841b2864ad20c22cc18b04010f9a813128 (diff) | |
download | rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.gz rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.bz2 rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.zip |
Merge pull request #1111 from epmatsw/spellcheck2
More Typo Fixes
Diffstat (limited to 'runtime/indent/ada.vim')
-rw-r--r-- | runtime/indent/ada.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/indent/ada.vim b/runtime/indent/ada.vim index 03fbaa3a18..a553756715 100644 --- a/runtime/indent/ada.vim +++ b/runtime/indent/ada.vim @@ -219,7 +219,7 @@ function GetAdaIndent() " Move indent in twice (next 'when' will move back) let ind = ind + 2 * &sw 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+&sw, lnum, 'type\>', '' ) elseif line =~ '\(^\s*new\>.*\)\@<!)\s*[;,]\s*$' |