1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/soap/mimemessage.rb (MIMEMessage#to_s): Fix a fatal

method name typo. [Bug #1173]




git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@22429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2009-02-19 05:14:28 +00:00
parent bb97560040
commit 6ae8d52a5c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Feb 19 14:12:15 2009 Akinori MUSHA <knu@iDaemons.org>
* lib/soap/mimemessage.rb (MIMEMessage#to_s): Fix a fatal
method name typo. [Bug #1173]
Wed Feb 18 12:35:31 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (rb_file_s_extname): fix for spaces before extention.

View file

@ -233,7 +233,7 @@ class MIMEMessage
end
def to_s
str = headers_str + "\r\n\r\n" + conent_str
str = headers_str + "\r\n\r\n" + content_str
end
end