瀏覽代碼

docs: fix typo

Mikael Koli 4 年之前
父節點
當前提交
f3d8fb5d2a
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      docs/tutorials/client.rst

+ 3 - 3
docs/tutorials/client.rst

@@ -7,7 +7,7 @@ Configuring SMTP Client
 Often the default client setup is enough but sometimes it may become necessary to get more control
 of the connection with your SMTP server. In this discussion we discuss ways to customize the connection.
 
-By default Red Mail uses `STARTLS <https://en.wikipedia.org/wiki/Opportunistic_TLS>`_ or opportunistic
+By default Red Mail uses `STARTTLS <https://en.wikipedia.org/wiki/Opportunistic_TLS>`_ or opportunistic
 TLS in connecting to the SMTP server. You may also change this if needed by changing the 
 ``cls_smtp`` to other SMTP client classes from `smtplib <https://docs.python.org/3/library/smtplib.html>`_
 in standard library.
@@ -17,10 +17,10 @@ in standard library.
     Extra keyword arguments in :class:`.EmailSender` initiation are passed to the SMTP client.
     Please see the documentation of the SMTP client you are seeking.
 
-STARTLS
+STARTTLS
 -------
 
-By default, Red Mail uses `STARTLS <https://en.wikipedia.org/wiki/Opportunistic_TLS>`_ 
+By default, Red Mail uses `STARTTLS <https://en.wikipedia.org/wiki/Opportunistic_TLS>`_ 
 which is configured as this:
 
 .. code-block:: python