From d9c41de9ccd3a1f262b22ddb0c705038c97beef5 Mon Sep 17 00:00:00 2001 From: gsinclair Date: Sun, 9 May 2004 14:42:43 +0000 Subject: * lib/net/ftp.rb: ported documentation improvement from 1.8 branch * lib/net/imap.rb: ditto * lib/net/pop.rb: ditto * lib/net/smtp.rb: ditto * lib/net/telnet.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6284 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/net/imap.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'lib/net/imap.rb') diff --git a/lib/net/imap.rb b/lib/net/imap.rb index bfb677f22d..666e883d68 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -7,7 +7,9 @@ # You can freely distribute/modify this library. # # Documentation: Shugo Maeda, with RDoc conversion and overview by William -# Webber. +# Webber. +# +# See Net::IMAP for documentation. # @@ -19,13 +21,13 @@ begin rescue LoadError end -module Net # :nodoc: +module Net # # Net::IMAP implements Internet Message Access Protocol (IMAP) client # functionality. The protocol is described in [IMAP]. # - # == IMAP OVERVIEW + # == IMAP Overview # # An IMAP client connects to a server, and then authenticates # itself using either #authenticate() or #login(). Having @@ -63,7 +65,7 @@ module Net # :nodoc: # UIDs have to be reassigned. An IMAP client cannot thus # rearrange message orders. # - # == EXAMPLES OF USAGE + # == Examples of Usage # # === List sender and subject of all recent messages in the default mailbox # @@ -89,7 +91,7 @@ module Net # :nodoc: # end # imap.expunge # - # == THREAD-SAFENESS + # == Thread Safety # # Net::IMAP supports concurrent threads. For example, # @@ -103,7 +105,7 @@ module Net # :nodoc: # # This script invokes the FETCH command and the SEARCH command concurrently. # - # == ERRORS + # == Errors # # An IMAP server can send three different types of responses to indicate # failure: -- cgit v1.2.3