diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/if_ruby.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/if_ruby.c')
-rw-r--r-- | src/if_ruby.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_ruby.c b/src/if_ruby.c index 514295850..d79d0eeb7 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -113,7 +113,7 @@ #endif /* - * Backward compatiblity for Ruby 1.8 and earlier. + * Backward compatibility for Ruby 1.8 and earlier. * Ruby 1.9 does not provide STR2CSTR, instead StringValuePtr is provided. * Ruby 1.9 does not provide RXXX(s)->len and RXXX(s)->ptr, instead * RXXX_LEN(s) and RXXX_PTR(s) are provided. @@ -1333,7 +1333,7 @@ static void ruby_vim_init(void) rb_global_variable(&objtbl); /* The Vim module used to be called "VIM", but "Vim" is better. Make an - * alias "VIM" for backwards compatiblity. */ + * alias "VIM" for backwards compatibility. */ mVIM = rb_define_module("Vim"); rb_define_const(rb_cObject, "VIM", mVIM); rb_define_const(mVIM, "VERSION_MAJOR", INT2NUM(VIM_VERSION_MAJOR)); |