summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-08 19:01:00 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-08 19:01:00 +0000
commitb160da8d0b018ca9db8a0b581aed60a00844f2be (patch)
tree39d51143872efa5eb3d5c820582d7c7fbd8a283a /lib
parenteb7f867981a48663d7cbf825870d010d8b669ebd (diff)
Fixed a typo in lib/soap/mimemessage.rb -- conent -> content
Backported BigDecimal fixes to bugs with BigDecimal handling of very large inputs; these bugs caused bad things to happen in combination with Date. Tests were added to the rubyspec project to cover these fixed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@23652 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