1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/win32ole] Fix typos [ci skip]

https://github.com/ruby/win32ole/commit/8d46bd0c93
This commit is contained in:
Nobuyoshi Nakada 2021-11-03 18:43:01 +09:00
parent 24f8f20cc7
commit ae95939784
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
Notes: git 2021-11-25 23:56:21 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -437,7 +437,7 @@ ole_method_invoke_kind(ITypeInfo *pTypeInfo, UINT method_index)
/* /*
* call-seq: * call-seq:
* WIN32OLE_MTHOD#invkind * WIN32OLE_METHOD#invkind
* *
* Returns the method invoke kind. * Returns the method invoke kind.
* tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbooks') * tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbooks')

View file

@ -101,7 +101,7 @@ if defined?(WIN32OLE)
assert_include(mnames, 'Count') assert_include(mnames, 'Count')
end end
def test_ole_mehtod_help def test_ole_method_help
minfo = @dict1.ole_method_help("Add") minfo = @dict1.ole_method_help("Add")
assert_equal(2, minfo.size_params) assert_equal(2, minfo.size_params)
end end