aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-30 02:56:14 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-30 02:56:14 +0000
commit80c21e35cb9660c5f10ee49ddc466866ed089e60 (patch)
treef4e7501d35923a86648272daa9e2a143e0585224 /ChangeLog
parentfbf5f324162e6f9aa4a264defc0b937b553a15be (diff)
downloadruby-80c21e35cb9660c5f10ee49ddc466866ed089e60.tar.gz
* lib/net/http.rb: improve rdoc.
patched by mathew murphy [ruby-core:33472] ref #4100 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog25
1 files changed, 15 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 905b2718e0..e9f5ebc8cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
+Tue Nov 30 11:39:13 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/net/http.rb: improve rdoc.
+ patched by mathew murphy [ruby-core:33472] ref #4100
+
Tue Nov 30 05:03:44 2010 Eric Hodel <drbrain@segment7.net>
* lib/uri/common.rb (encode_www_form, encode_www_form_component):
Improve english in documentation.
-
+
* ext/openssl/ossl_ssl.c (ssl_version=, ciphers=): Document
#ssl_version=, add documentation for #ciphers=.
@@ -433,7 +438,7 @@ Thu Nov 18 07:16:49 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
Thu Nov 18 00:02:17 2010 James Edward Gray II <jeg2@ruby-lang.org>
- * lib/csv.rb: Upgrading output encoding with ASCII content
+ * lib/csv.rb: Upgrading output encoding with ASCII content
as needed. [ruby-core:33229]
Wed Nov 17 23:19:21 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
@@ -925,14 +930,14 @@ Tue Nov 2 00:25:54 2010 NAKAMURA Usaku <usa@ruby-lang.org>
Mon Nov 1 21:25:57 2010 URABE Shyouhei <shyouhei@ruby-lang.org>
* main.c: <stdlib.h> is needed, to introduce the getenv(3)
- prototype declaration. Without it a C compiler shall infer
- the getenv type as "int getenv(...);", but this is totally
- wrong, especially when your machine's sizeof(int) and
- sizeof(char*) differs. On such environment a return value
- of getenv(3), which is in fact a char*, might first casted
- into a int (loses data here), and then casted back to char*
- by automatic integral promotion to fit to the prototype of
- ruby_set_debug_option().
+ prototype declaration. Without it a C compiler shall infer
+ the getenv type as "int getenv(...);", but this is totally
+ wrong, especially when your machine's sizeof(int) and
+ sizeof(char*) differs. On such environment a return value
+ of getenv(3), which is in fact a char*, might first casted
+ into a int (loses data here), and then casted back to char*
+ by automatic integral promotion to fit to the prototype of
+ ruby_set_debug_option().
Sun Oct 31 23:27:09 2010 Koichi Sasada <ko1@atdot.net>