From 0c14c3ab0b1bbf3f2a5b2c0accb2a53528635e44 Mon Sep 17 00:00:00 2001 From: glass Date: Sun, 10 May 2015 03:01:18 +0000 Subject: * ext/win32ole/win32ole_variant.c: fix typo "indicies". the patch is from davydovanton . [fix GH-892] * lib/rubygems/indexer.rb: ditto. * test/rubygems/test_gem_indexer.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/win32ole/win32ole_variant.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/win32ole') diff --git a/ext/win32ole/win32ole_variant.c b/ext/win32ole/win32ole_variant.c index 1731ab7a61..13a1fcf55d 100644 --- a/ext/win32ole/win32ole_variant.c +++ b/ext/win32ole/win32ole_variant.c @@ -491,9 +491,9 @@ unlock_safe_array(SAFEARRAY *psa) * WIN32OLE_VARIANT object is VT_ARRAY. * * REMARK: - * The all indicies should be 0 or natural number and - * lower than or equal to max indicies. - * (This point is different with Ruby Array indicies.) + * The all indices should be 0 or natural number and + * lower than or equal to max indices. + * (This point is different with Ruby Array indices.) * * obj = WIN32OLE_VARIANT.new([[1,2,3],[4,5,6]]) * p obj[0,0] # => 1 @@ -546,9 +546,9 @@ folevariant_ary_aref(int argc, VALUE *argv, VALUE self) * WIN32OLE_VARIANT object is VT_ARRAY. * * REMARK: - * The all indicies should be 0 or natural number and - * lower than or equal to max indicies. - * (This point is different with Ruby Array indicies.) + * The all indices should be 0 or natural number and + * lower than or equal to max indices. + * (This point is different with Ruby Array indices.) * * obj = WIN32OLE_VARIANT.new([[1,2,3],[4,5,6]]) * obj[0,0] = 7 -- cgit v1.2.3