diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-21 09:07:57 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-21 09:07:57 +0000 |
commit | f3f7c40c492b791eecae4980eb817eb1aae02442 (patch) | |
tree | 844775c08c836e280e9e434f4c1fed8dc9dab59e /lib/net/imap.rb | |
parent | ed8152d68cd47d4f481c6cc6055bd5a56cfe8fd5 (diff) | |
download | ruby-f3f7c40c492b791eecae4980eb817eb1aae02442.tar.gz |
Small changes to documentation; mainly hiding things from RDoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/imap.rb')
-rw-r--r-- | lib/net/imap.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb index a84f5637ef..0463665bd5 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -185,7 +185,7 @@ begin rescue LoadError end -module Net +module Net # :nodoc: # Net::IMAP implements Internet Message Access Protocol (IMAP) client # functionality. The protocol is described in [IMAP]. @@ -834,8 +834,8 @@ module Net private - CRLF = "\r\n" - PORT = 143 + CRLF = "\r\n" # :nodoc: + PORT = 143 # :nodoc: @@debug = false @@authenticators = {} |