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

ruby-changes:13348

From: naruse <ko1@a...>
Date: Sun, 27 Sep 2009 05:37:41 +0900 (JST)
Subject: [ruby-changes:13348] Ruby:r25114 (trunk): * ext/json/ext/generator/generator.c: Documention patch by okkez.

naruse	2009-09-27 05:37:06 +0900 (Sun, 27 Sep 2009)

  New Revision: 25114

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25114

  Log:
    * ext/json/ext/generator/generator.c: Documention patch by okkez.
      [Bug #2075]

  Modified files:
    trunk/ChangeLog
    trunk/ext/json/ext/generator/generator.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 25113)
+++ ChangeLog	(revision 25114)
@@ -1,3 +1,8 @@
+Sun Sep 27 05:35:17 2009  NARUSE, Yui  <naruse@r...>
+
+	* ext/json/ext/generator/generator.c: Documention patch by okkez.
+	  [Bug #2075]
+
 Sun Sep 27 04:20:55 2009  NARUSE, Yui  <naruse@r...>
 
 	* string.c (rb_str_inspect): result's encoding should be fixed.
@@ -7,6 +12,7 @@
 	  US-ASCII.
 	  Characters in ASCII-incompatible encoding or non ASCII characters
 	  in other than the encoding will be \xXX escaped.
+	  [ruby-dev:39343]
 
 	* string.c (str_buf_cat2): defined.
 
Index: ext/json/ext/generator/generator.c
===================================================================
--- ext/json/ext/generator/generator.c	(revision 25113)
+++ ext/json/ext/generator/generator.c	(revision 25114)
@@ -409,7 +409,7 @@
 }
 
 /*
- * call-seq: to_json(state = nil, depth = 0)
+ * call-seq: to_json(*)
  *
  * Returns a JSON string for true: 'true'.
  */
@@ -421,7 +421,7 @@
 }
 
 /*
- * call-seq: to_json(state = nil, depth = 0)
+ * call-seq: to_json(*)
  *
  * Returns a JSON string for false: 'false'.
  */
@@ -433,7 +433,7 @@
 }
 
 /*
- * call-seq: to_json(state = nil, depth = 0)
+ * call-seq: to_json(*)
  *
  */
 static VALUE mNilClass_to_json(int argc, VALUE *argv, VALUE self)

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

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