diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-08 07:00:23 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-08 07:00:23 +0000 |
commit | 771b3de9d2fea7c0dcf83646dc72b9dcb16d8566 (patch) | |
tree | 7f59575bb477555c913bf0d9c676b81afb17f581 /lib/net/protocol.rb | |
parent | 4191b7dff6684e480f595d2463e4bb925a8413fb (diff) | |
download | ruby-771b3de9d2fea7c0dcf83646dc72b9dcb16d8566.tar.gz ruby-771b3de9d2fea7c0dcf83646dc72b9dcb16d8566.tar.xz ruby-771b3de9d2fea7c0dcf83646dc72b9dcb16d8566.zip |
aamine
* lib/net/http.rb: rename HTTP#request_by_name to send_request.
* lib/net/protocol.rb (ProtoSocket#read): modify typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/protocol.rb')
-rw-r--r-- | lib/net/protocol.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb index aba2256b6..edc0f24b6 100644 --- a/lib/net/protocol.rb +++ b/lib/net/protocol.rb @@ -1,6 +1,6 @@ =begin -= net/protocol.rb version 1.2.2 += net/protocol.rb version 1.2.3 Copyright (c) 1999-2001 Yukihiro Matsumoto @@ -32,7 +32,7 @@ module Net class Protocol - Version = '1.2.2' + Version = '1.2.3' class << self @@ -532,7 +532,7 @@ module Net CRLF = "\r\n" - def read( len, dest = '', ignerr = false ) + def read( len, dest = '', igneof = false ) D_off "reading #{len} bytes..." rsize = 0 |