From a28cd28c043b0b4357d7658ed0ed78c4c8ffaff8 Mon Sep 17 00:00:00 2001 From: nahi Date: Sat, 31 Oct 2009 08:18:32 +0000 Subject: * lib/net/http.rb (Net::HTTPResponse#each_response_header): cosmetic: '?\ ' -> '?\s' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/net') diff --git a/lib/net/http.rb b/lib/net/http.rb index 57a2b2eea5..fb8a3cc08b 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -2162,7 +2162,7 @@ module Net #:nodoc: while true line = sock.readuntil("\n", true).sub(/\s+\z/, '') break if line.empty? - if line[0] == ?\ or line[0] == ?\t and value + if line[0] == ?\s or line[0] == ?\t and value value << ' ' unless value.empty? value << line.strip else -- cgit v1.2.3