Skip to content

Commit a9d06ea

Browse files
committed
📚 Simplify Config defaults documentation
No need for a table for these, since they are no different between versions (and they are unlikely to change any time soon).
1 parent 2ed435f commit a9d06ea

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

lib/net/imap/config.rb

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ def self.[](config) # :nodoc: unfinished API
5757

5858
# The debug mode (boolean)
5959
#
60-
# | Starting with version | The default value is |
61-
# |-----------------------|----------------------|
62-
# | _original_ | +false+ |
60+
# The default value is +false+.
6361
attr_accessor :debug, type: :boolean
6462

6563
# method: debug?
@@ -72,17 +70,13 @@ def self.[](config) # :nodoc: unfinished API
7270
# If the IMAP object cannot open a connection within this time,
7371
# it raises a Net::OpenTimeout exception. See Net::IMAP.new.
7472
#
75-
# | Starting with version | The default value is |
76-
# |-----------------------|----------------------|
77-
# | _original_ | +30+ seconds |
73+
# The default value is +30+ seconds.
7874
attr_accessor :open_timeout, type: Integer
7975

8076
# Seconds to wait until an IDLE response is received, after
8177
# the client asks to leave the IDLE state. See Net::IMAP#idle_done.
8278
#
83-
# | Starting with version | The default value is |
84-
# |-----------------------|----------------------|
85-
# | _original_ | +5+ seconds |
79+
# The default value is +5+ seconds.
8680
attr_accessor :idle_response_timeout, type: Integer
8781

8882
# Creates a new config object and initialize its attribute with +attrs+.

0 commit comments

Comments
 (0)