diff options
author | aycabta <[email protected]> | 2021-03-31 15:18:37 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2021-03-31 15:18:52 +0900 |
commit | 66d2fc7989d741bf5a73286233139901cecb4fc2 (patch) | |
tree | c14e9e19eb1371f202a2e55ad6be10c2f5a92cef /lib/net | |
parent | d977849e1c4fb231247c3178d4d3d971722245f3 (diff) |
Enclose the code that was accidentally a link in "tt"
Diffstat (limited to 'lib/net')
-rw-r--r-- | lib/net/imap.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb index 505b4c8950..36920c4a91 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -447,8 +447,8 @@ module Net # in the +mailbox+ can be accessed. # # After you have selected a mailbox, you may retrieve the - # number of items in that mailbox from @responses["EXISTS"][-1], - # and the number of recent messages from @responses["RECENT"][-1]. + # number of items in that mailbox from +@responses["EXISTS"][-1]+, + # and the number of recent messages from +@responses["RECENT"][-1]+. # Note that these values can change if new messages arrive # during a session; see #add_response_handler() for a way of # detecting this event. @@ -1052,11 +1052,11 @@ module Net # The available options are: # # port:: Port number (default value is 143 for imap, or 993 for imaps) - # ssl:: If options[:ssl] is true, then an attempt will be made + # ssl:: If +options[:ssl]+ is true, then an attempt will be made # to use SSL (now TLS) to connect to the server. For this to work # OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to # be installed. - # If options[:ssl] is a hash, it's passed to + # If +options[:ssl]+ is a hash, it's passed to # OpenSSL::SSL::SSLContext#set_params as parameters. # open_timeout:: Seconds to wait until a connection is opened # @@ -1912,13 +1912,13 @@ module Net # [INTERNALDATE] # A string representing the internal date of the message. # [RFC822] - # Equivalent to BODY[]. + # Equivalent to +BODY[]+. # [RFC822.HEADER] - # Equivalent to BODY.PEEK[HEADER]. + # Equivalent to +BODY.PEEK[HEADER]+. # [RFC822.SIZE] # A number expressing the [RFC-822] size of the message. # [RFC822.TEXT] - # Equivalent to BODY[TEXT]. + # Equivalent to +BODY[TEXT]+. # [UID] # A number expressing the unique identifier of the message. # |