Fix typo in Ruby definition

This commit is contained in:
Jan Larres
2011-02-28 18:08:31 +13:00
parent c67610eba3
commit 9eb5ff5e1f

View File

@ -536,8 +536,9 @@ function! s:InitTypes()
\ 'f:methods',
\ 'F:singleton methods'
\ ]
let type_ruby.kinds2scope = {
\ 'c' : 'class'
let type_ruby.kind2scope = {
\ 'c' : 'class',
\ 'm' : 'class'
\ }
let type_ruby.scope2kind = {
\ 'class' : 'c'