diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-16 00:48:17 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-16 00:48:17 +0000 |
commit | 37ec0bffe433c11c2d08a732816c6095d05801a8 (patch) | |
tree | f461bc410b7441aa07f487b21ae603d9d89d2a64 | |
parent | a76b84cfbb7391cc39175d0df5e6851d23e1a11d (diff) | |
download | ruby-37ec0bffe433c11c2d08a732816c6095d05801a8.tar.gz ruby-37ec0bffe433c11c2d08a732816c6095d05801a8.tar.xz ruby-37ec0bffe433c11c2d08a732816c6095d05801a8.zip |
* lib/net/http.rb (set_debug_output): last commit was wrong.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/net/http.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb index 33febdd7a..ccabbff8e 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -366,7 +366,7 @@ module Net # :nodoc: # http.start { .... } # def set_debug_output( output ) - warn 'Net::HTTP#set_debug_output called after HTTP started' + warn 'Net::HTTP#set_debug_output called after HTTP started' if started? @debug_output = output end |