Skip to content

Commit 5dc63c2

Browse files
aycabtahsbt
authored andcommitted
Enclose the code that was accidentally a link in "tt"
1 parent 69b1298 commit 5dc63c2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/net/imap.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,8 @@ def login(user, password)
479479
# in the +mailbox+ can be accessed.
480480
#
481481
# After you have selected a mailbox, you may retrieve the
482-
# number of items in that mailbox from @responses["EXISTS"][-1],
483-
# and the number of recent messages from @responses["RECENT"][-1].
482+
# number of items in that mailbox from +@responses["EXISTS"][-1]+,
483+
# and the number of recent messages from +@responses["RECENT"][-1]+.
484484
# Note that these values can change if new messages arrive
485485
# during a session; see #add_response_handler() for a way of
486486
# detecting this event.
@@ -1138,11 +1138,11 @@ def self.format_datetime(time)
11381138
# The available options are:
11391139
#
11401140
# port:: Port number (default value is 143 for imap, or 993 for imaps)
1141-
# ssl:: If options[:ssl] is true, then an attempt will be made
1141+
# ssl:: If +options[:ssl]+ is true, then an attempt will be made
11421142
# to use SSL (now TLS) to connect to the server. For this to work
11431143
# OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to
11441144
# be installed.
1145-
# If options[:ssl] is a hash, it's passed to
1145+
# If +options[:ssl]+ is a hash, it's passed to
11461146
# OpenSSL::SSL::SSLContext#set_params as parameters.
11471147
# open_timeout:: Seconds to wait until a connection is opened
11481148
# idle_response_timeout:: Seconds to wait until an IDLE response is received
@@ -2124,13 +2124,13 @@ def ensure_mod_sequence_value(num)
21242124
# [INTERNALDATE]
21252125
# A string representing the internal date of the message.
21262126
# [RFC822]
2127-
# Equivalent to BODY[].
2127+
# Equivalent to +BODY[]+.
21282128
# [RFC822.HEADER]
2129-
# Equivalent to BODY.PEEK[HEADER].
2129+
# Equivalent to +BODY.PEEK[HEADER]+.
21302130
# [RFC822.SIZE]
21312131
# A number expressing the [RFC-822] size of the message.
21322132
# [RFC822.TEXT]
2133-
# Equivalent to BODY[TEXT].
2133+
# Equivalent to +BODY[TEXT]+.
21342134
# [UID]
21352135
# A number expressing the unique identifier of the message.
21362136
#

0 commit comments

Comments
 (0)