1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/imap.rb: fixed RDoc markups.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2007-12-22 07:29:01 +00:00
parent fa3d06c738
commit 3ee72c86ef

View file

@ -882,17 +882,17 @@ module Net
# Creates a new Net::IMAP object and connects it to the specified # Creates a new Net::IMAP object and connects it to the specified
# +host+. # +host+.
# #
# +options+ is an option hash. # +options+ is an option hash, each key of which is a symbol.
# #
# The available options are: # The available options are:
# #
# :port:: port number (default value is 143 for imap, or 993 for imaps) # 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 # to use SSL (now TLS) to connect to the server. For this to work
# OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to # OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions need to
# be installed. # 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.build as parameters. # OpenSSL::SSL::SSLContext.build as parameters.
# #
# The most common errors are: # The most common errors are:
# #