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 f097ae3 Fix grammar in FAQ.rst (#12127)
f097ae3 is described below
commit f097ae39a7243bd25d4d26664bc259981b2ba217
Author: Zachary Wilson <[email protected]>
AuthorDate: Fri Nov 6 06:14:32 2020 -0600
Fix grammar in FAQ.rst (#12127)
---
docs/faq.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/faq.rst b/docs/faq.rst
index ed4f611..826ed0a 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -94,7 +94,7 @@ What's the deal with ``start_date``?
relevant in many ways. When creating a new DAG, you probably want to set
a global ``start_date`` for your tasks using ``default_args``. The first
DagRun to be created will be based on the ``min(start_date)`` for all your
-task. From that point on, the scheduler creates new DagRuns based on
+tasks. From that point on, the scheduler creates new DagRuns based on
your ``schedule_interval`` and the corresponding task instances run as your
dependencies are met. When introducing new tasks to your DAG, you need to
pay special attention to ``start_date``, and may want to reactivate