summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 12:34:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 12:34:37 +0000
commitc3da426d10a686dc24f86d000178a2d1eb852e17 (patch)
tree283d8fc06ecb928e417c789509a05f59dd26cabd /lib
parenta00a9a28fbbb1268fc6c3c50a695adadbf5be4f4 (diff)
remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/imap.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb
index c51a2954e5..a83f455163 100644
--- a/lib/net/imap.rb
+++ b/lib/net/imap.rb
@@ -2033,7 +2033,7 @@ module Net
end
end
- class BodyTypeExtension < Struct.new(:media_type, :subtype,
+ class BodyTypeExtension < Struct.new(:media_type, :subtype,
:params, :content_id,
:description, :encoding, :size)
def multipart?
@@ -2414,11 +2414,11 @@ module Net
# If this is not message/rfc822, we shouldn't apply the RFC822 spec
# to it.
# We should handle anything other than message/rfc822 using
- # multipart extension data [rfc3501] (i.e. the data itself won't be
+ # multipart extension data [rfc3501] (i.e. the data itself won't be
# returned, we would have to retrieve it with BODYSTRUCTURE instead
# of with BODY
if "#{mtype}/#{msubtype}" != 'MESSAGE/RFC822' then
- return BodyTypeExtension.new(mtype, msubtype,
+ return BodyTypeExtension.new(mtype, msubtype,
param, content_id,
desc, enc, size)
end