[前][次][番号順一覧][スレッド一覧]

ruby-changes:44129

From: kazu <ko1@a...>
Date: Thu, 22 Sep 2016 13:07:06 +0900 (JST)
Subject: [ruby-changes:44129] kazu:r56201 (trunk): gc.c: fix rdoc of garbage_collect [ci skip]

kazu	2016-09-22 13:06:53 +0900 (Thu, 22 Sep 2016)

  New Revision: 56201

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56201

  Log:
    gc.c: fix rdoc of garbage_collect [ci skip]
    
    * gc.c (gc_start_internal): [DOC] methods without arguments
      like r56194. [Bug #12777]

  Modified files:
    trunk/ChangeLog
    trunk/gc.c
Index: gc.c
===================================================================
--- gc.c	(revision 56200)
+++ gc.c	(revision 56201)
@@ -6574,7 +6574,8 @@ Init_stack(volatile VALUE *addr) https://github.com/ruby/ruby/blob/trunk/gc.c#L6574
 /*
  *  call-seq:
  *     GC.start                     -> nil
- *     GC.garbage_collect           -> nil
+ *     ObjectSpace.garbage_collect  -> nil
+ *     include GC; garbage_collect  -> nil
  *     GC.start(full_mark: true, immediate_sweep: true)           -> nil
  *     ObjectSpace.garbage_collect(full_mark: true, immediate_sweep: true) -> nil
  *     include GC; garbage_collect(full_mark: true, immediate_sweep: true) -> nil
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 56200)
+++ ChangeLog	(revision 56201)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Sep 22 13:00:04 2016  Kazuhiro NISHIYAMA  <zn@m...>
+
+	* gc.c (gc_start_internal): [DOC] methods without arguments
+	  like r56194. [Bug #12777]
+
 Wed Sep 21 17:43:53 2016  NARUSE, Yui  <naruse@r...>
 
 	* process.c (InitVM_process): Support CLOCK_MONOTONIC_RAW_APPROX,

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]