diff --git a/lib/net/imap.rb b/lib/net/imap.rb index 50307b3d..d6d62cec 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -1003,12 +1003,12 @@ def starttls(options = {}, verify = true) # the documentation for the specific mechanisms you are using: # # +PLAIN+:: - # See PlainAuthenticator[Net::IMAP::SASL::PlainAuthenticator]. + # See PlainAuthenticator[rdoc-ref:Net::IMAP::SASL::PlainAuthenticator]. # # Login using clear-text username and password. # # +XOAUTH2+:: - # See XOAuth2Authenticator[Net::IMAP::SASL::XOAuth2Authenticator]. + # See XOAuth2Authenticator[rdoc-ref:Net::IMAP::SASL::XOAuth2Authenticator]. # # Login using a username and an OAuth2 access token. Non-standard and # obsoleted by +OAUTHBEARER+, but widely supported. diff --git a/lib/net/imap/sasl.rb b/lib/net/imap/sasl.rb index 921df2ea..9fc3666c 100644 --- a/lib/net/imap/sasl.rb +++ b/lib/net/imap/sasl.rb @@ -28,12 +28,12 @@ class IMAP # the documentation for the specific mechanisms you are using: # # +PLAIN+:: - # See PlainAuthenticator[Net::IMAP::SASL::PlainAuthenticator]. + # See PlainAuthenticator. # # Login using clear-text username and password. # # +XOAUTH2+:: - # See XOAuth2Authenticator[Net::IMAP::SASL::XOAuth2Authenticator]. + # See XOAuth2Authenticator. # # Login using a username and an OAuth2 access token. Non-standard and # obsoleted by +OAUTHBEARER+, but widely supported.