summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-26 12:22:37 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-26 12:22:37 +0000
commit006cdad18fabdb9045d3f5baa36ca21f23668571 (patch)
treea111772c30555e063333c2ee97fb5dcc51c9d0e2 /lib
parent7a5eaffefdfed01b061460a3a7f8d8d55dcb761a (diff)
merge revision(s) 22429:
* 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_7@23587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/soap/mimemessage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/soap/mimemessage.rb b/lib/soap/mimemessage.rb
index acb4322e11..e4960b0bff 100644
--- a/lib/soap/mimemessage.rb
+++ b/lib/soap/mimemessage.rb
@@ -232,7 +232,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