You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/01/16 22:48:05 UTC

[airflow] branch master updated: [Doc] Replace module path to Class with just Class Name (#13719)

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

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new adbfe44  [Doc] Replace module path to Class with just Class Name (#13719)
adbfe44 is described below

commit adbfe4426668246adbd6965a347b892d74636db0
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sat Jan 16 22:47:57 2021 +0000

    [Doc] Replace module path to Class with just Class Name (#13719)
    
    Instead of `the airflow.executors.sequential_executor.SequentialExecutor`
    just have `SequentialExecutor with the link to the actual class.
---
 docs/apache-airflow/start.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/apache-airflow/start.rst b/docs/apache-airflow/start.rst
index 7b11df2..b8cc59f 100644
--- a/docs/apache-airflow/start.rst
+++ b/docs/apache-airflow/start.rst
@@ -70,7 +70,8 @@ if started by systemd.
 
 Out of the box, Airflow uses a sqlite database, which you should outgrow
 fairly quickly since no parallelization is possible using this database
-backend. It works in conjunction with the :class:`airflow.executors.sequential_executor.SequentialExecutor` which will
+backend. It works in conjunction with the
+:class:`~airflow.executors.sequential_executor.SequentialExecutor` which will
 only run task instances sequentially. While this is very limiting, it allows
 you to get up and running quickly and take a tour of the UI and the
 command line utilities.