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

ruby-changes:46042

From: usa <ko1@a...>
Date: Sun, 26 Mar 2017 02:37:28 +0900 (JST)
Subject: [ruby-changes:46042] usa:r58113 (ruby_2_2): merge revision(s) 57522: [Backport #13189]

usa	2017-03-26 02:37:23 +0900 (Sun, 26 Mar 2017)

  New Revision: 58113

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

  Log:
    merge revision(s) 57522: [Backport #13189]
    
    doc: restore class documentation for Struct
    
    * struct.c: restore class documentation for Struct
      that disappeared with r46663.
    
    Due to r46663, the class documentation for Struct disappeared.
    (The revision inserted the definition of `InitVM_Struct` between
    the rdoc and the definition of `Init_Struct`.)
    
    The docs are rendered for 2.1: <https://docs.ruby-lang.org/en/2.1.0/Struct.html>,
    but not for later versions, see: <https://docs.ruby-lang.org/en/2.2.0/Struct.html>
    (Same for `ri` pages).
    
    [ruby-core:79416] [Bug #13189]

  Modified directories:
    branches/ruby_2_2/
  Modified files:
    branches/ruby_2_2/struct.c
    branches/ruby_2_2/version.h
Index: ruby_2_2/version.h
===================================================================
--- ruby_2_2/version.h	(revision 58112)
+++ ruby_2_2/version.h	(revision 58113)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/version.h#L1
 #define RUBY_VERSION "2.2.7"
 #define RUBY_RELEASE_DATE "2017-03-26"
-#define RUBY_PATCHLEVEL 445
+#define RUBY_PATCHLEVEL 446
 
 #define RUBY_RELEASE_YEAR 2017
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_2/struct.c
===================================================================
--- ruby_2_2/struct.c	(revision 58112)
+++ ruby_2_2/struct.c	(revision 58113)
@@ -1041,6 +1041,8 @@ rb_struct_size(VALUE s) https://github.com/ruby/ruby/blob/trunk/ruby_2_2/struct.c#L1041
 }
 
 /*
+ *  Document-class: Struct
+ *
  *  A Struct is a convenient way to bundle a number of attributes together,
  *  using accessor methods, without having to write an explicit class.
  *

Property changes on: ruby_2_2
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r57522


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

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