ruby-changes:35701
From: zzak <ko1@a...>
Date: Sat, 4 Oct 2014 09:10:04 +0900 (JST)
Subject: [ruby-changes:35701] zzak:r47783 (trunk): * ext/win32ole/win32ole.c: [DOC] Fix typo in :nodoc: reported by
zzak 2014-10-04 09:09:57 +0900 (Sat, 04 Oct 2014) New Revision: 47783 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47783 Log: * ext/win32ole/win32ole.c: [DOC] Fix typo in :nodoc: reported by @windwiny to [Fix GH-705] https://github.com/ruby/ruby/pull/705 * ext/pty/pty.c: ditto Modified files: trunk/ChangeLog trunk/ext/pty/pty.c trunk/ext/win32ole/win32ole.c Index: ChangeLog =================================================================== --- ChangeLog (revision 47782) +++ ChangeLog (revision 47783) @@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Oct 4 09:08:18 2014 Zachary Scott <e@z...> + + * ext/win32ole/win32ole.c: [DOC] Fix typo in :nodoc: reported by + @windwiny to [Fix GH-705] https://github.com/ruby/ruby/pull/705 + + * ext/pty/pty.c: ditto + Sat Oct 4 08:59:45 2014 Zachary Scott <e@z...> * ext/openssl/ossl_rand.c: [DOC] Add call signature for pseudo_bytes Index: ext/win32ole/win32ole.c =================================================================== --- ext/win32ole/win32ole.c (revision 47782) +++ ext/win32ole/win32ole.c (revision 47783) @@ -2332,7 +2332,7 @@ fole_s_create_guid(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/win32ole/win32ole.c#L2332 * You must not use these method. */ -/* :nodoc */ +/* :nodoc: */ static VALUE fole_s_ole_initialize(VALUE self) { @@ -2340,7 +2340,7 @@ fole_s_ole_initialize(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/win32ole/win32ole.c#L2340 return Qnil; } -/* :nodoc */ +/* :nodoc: */ static VALUE fole_s_ole_uninitialize(VALUE self) { Index: ext/pty/pty.c =================================================================== --- ext/pty/pty.c (revision 47782) +++ ext/pty/pty.c (revision 47783) @@ -748,7 +748,7 @@ void https://github.com/ruby/ruby/blob/trunk/ext/pty/pty.c#L748 Init_pty(void) { cPTY = rb_define_module("PTY"); - /* :nodoc */ + /* :nodoc: */ rb_define_module_function(cPTY,"getpty",pty_getpty,-1); rb_define_module_function(cPTY,"spawn",pty_getpty,-1); rb_define_singleton_method(cPTY,"check",pty_check,-1); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/