summaryrefslogtreecommitdiff
path: root/ext/win32ole/win32ole.c
diff options
context:
space:
mode:
authorsvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-11 11:51:04 +0000
committersvn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-11 11:51:04 +0000
commit803232c8bb9053c3ac03cf0c070a3207a9e7bcab (patch)
treeb22632f29e918f3aac47a53e1f456964fbcbfc90 /ext/win32ole/win32ole.c
parent610877045a3cd09ad6338bd98373a2a645926170 (diff)
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/win32ole.c')
-rw-r--r--ext/win32ole/win32ole.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/win32ole/win32ole.c b/ext/win32ole/win32ole.c
index 324decc00b..715b1614cc 100644
--- a/ext/win32ole/win32ole.c
+++ b/ext/win32ole/win32ole.c
@@ -9162,11 +9162,11 @@ folevariant_set_value(VALUE self, VALUE val)
* WIN32OLE_RECORD#to_h #=> Ruby Hash object.
*
* Returns Ruby Hash object which represents VT_RECORD variable.
- * The keys of Hash object are member names of VT_RECORD OLE variable and
+ * The keys of Hash object are member names of VT_RECORD OLE variable and
* the values of Hash object are values of VT_RECORD OLE variable.
*
*/
-static VALUE
+static VALUE
fole_record_to_h(VALUE self)
{
return rb_ivar_get(self, rb_intern("fields"));
@@ -9178,7 +9178,7 @@ fole_record_to_h(VALUE self)
*
* Returns the type name of VT_RECORD OLE variable.
*/
-static VALUE
+static VALUE
fole_record_typename(VALUE self)
{
return rb_ivar_get(self, rb_intern("typename"));
@@ -9193,7 +9193,7 @@ fole_record_typename(VALUE self)
static VALUE
fole_record_method_missing(VALUE self, VALUE member)
{
-
+
VALUE fields = rb_ivar_get(self, rb_intern("fields"));
VALUE val = rb_hash_aref(fields, rb_to_id(member));
if (val != Qnil) {