Improved wording

This commit is contained in:
dankito 2024-11-26 01:34:51 +01:00
parent 0c1d48736c
commit aa23cc0eb1
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ val mailsWithEInvoices = mailReader.listAllMessagesWithEInvoice(MailAccount(
username = "", // your mail account username username = "", // your mail account username
password = "", // your mail account username password = "", // your mail account username
serverAddress = "", // IMAP server address serverAddress = "", // IMAP server address
port = null // IMAP server port, leave null if default port 993 port = null // IMAP server port, can be left null for default port 993
)) ))
``` ```

View File

@ -31,7 +31,7 @@ class Demonstration {
username = "", // your mail account username username = "", // your mail account username
password = "", // your mail account username password = "", // your mail account username
serverAddress = "", // IMAP server address serverAddress = "", // IMAP server address
port = null // IMAP server port, leave null if default port 993 port = null // IMAP server port, can be left null for default port 993
)) ))
} }

View File

@ -15,7 +15,7 @@ class MailReaderTest {
username = "", username = "",
password = "", password = "",
serverAddress = "", serverAddress = "",
port = null // can be left as null if default port 993 is used port = null // IMAP server port, can be left null for default port 993
) )
} }