This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 893253a4c3 docs: copyedit DAG (#27995)
893253a4c3 is described below
commit 893253a4c36634c17810dd6fd0a44fb1fc174939
Author: Dan Dascalescu <[email protected]>
AuthorDate: Tue Nov 29 19:31:34 2022 -0800
docs: copyedit DAG (#27995)
---
docs/apache-airflow/concepts/dags.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/apache-airflow/concepts/dags.rst
b/docs/apache-airflow/concepts/dags.rst
index 85aaf8229e..a7e0a75956 100644
--- a/docs/apache-airflow/concepts/dags.rst
+++ b/docs/apache-airflow/concepts/dags.rst
@@ -59,7 +59,7 @@ Or, you can use the ``@dag`` decorator to :ref:`turn a
function into a DAG gener
dag = generate_dag()
-DAGs are nothing without :doc:`tasks` to run, and those will usually either
come in the form of either :doc:`operators`, :doc:`sensors` or :doc:`taskflow`.
+DAGs are nothing without :doc:`tasks` to run, and those will usually come in
the form of either :doc:`operators`, :doc:`sensors` or :doc:`taskflow`.
Task Dependencies
@@ -96,7 +96,7 @@ And if you want to chain together dependencies, you can use
``chain``::
# You can also do it dynamically
chain(*[EmptyOperator(task_id='op' + i) for i in range(1, 6)])
-Chain can also do *pairwise* dependencies for lists the same size (this is
different to the *cross dependencies* done by ``cross_downstream``!)::
+Chain can also do *pairwise* dependencies for lists the same size (this is
different from the *cross dependencies* created by ``cross_downstream``!)::
from airflow.models.baseoperator import chain