You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/08/02 13:44:16 UTC

[airflow] 21/22: Fix typo in webserver.rst (#17288)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit d415256cd0ac3d300a9d541e2ca67a274f44a5da
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Wed Jul 28 17:37:14 2021 +0100

    Fix typo in webserver.rst (#17288)
    
    Porting https://github.com/apache/airflow-site/pull/454 to Airflow docs. Added @pumpkiny9120 as co-author
    
    Co-authored-by: Yanan Valencia <pu...@gmail.com>
    (cherry picked from commit 642d05be4299e86310eb1b61a9991bad17e7d95f)
---
 docs/apache-airflow/security/webserver.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/apache-airflow/security/webserver.rst b/docs/apache-airflow/security/webserver.rst
index 5fb03c5..3906abf 100644
--- a/docs/apache-airflow/security/webserver.rst
+++ b/docs/apache-airflow/security/webserver.rst
@@ -90,7 +90,7 @@ Other Methods
 '''''''''''''
 
 Since the Airflow 2.0, the default UI is the Flask App Builder RBAC. A ``webserver_config.py`` configuration file
-it's automatically generated and can be used to configure the Airflow to support authentication
+is automatically generated and can be used to configure the Airflow to support authentication
 methods like OAuth, OpenID, LDAP, REMOTE_USER.
 
 For previous versions from Airflow, the ``$AIRFLOW_HOME/airflow.cfg`` following entry needs to be set to enable
@@ -107,7 +107,7 @@ with the following entry in the ``$AIRFLOW_HOME/webserver_config.py``.
 
     AUTH_TYPE = AUTH_DB
 
-Another way to create users it's in the UI login page, allowing user self registration through a "Register" button.
+Another way to create users is in the UI login page, allowing user self registration through a "Register" button.
 The following entries in the ``$AIRFLOW_HOME/webserver_config.py`` can be edited to make it possible:
 
 .. code-block:: ini