You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bo...@apache.org on 2017/11/02 11:56:56 UTC

incubator-airflow git commit: [AIRFLOW-XXX] Correct typos in the faq docs page

Repository: incubator-airflow
Updated Branches:
  refs/heads/master cc01b7df3 -> 54f1b77f9


[AIRFLOW-XXX] Correct typos in the faq docs page

Closes #2735 from aaronmyatt/correct-typos-in-faq-
page


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/54f1b77f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/54f1b77f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/54f1b77f

Branch: refs/heads/master
Commit: 54f1b77f99f49f75a415e015432f5e6fefde143d
Parents: cc01b7d
Author: Aaron Myatt <aa...@gmail.com>
Authored: Thu Nov 2 12:56:24 2017 +0100
Committer: Bolke de Bruin <bo...@xs4all.nl>
Committed: Thu Nov 2 12:56:37 2017 +0100

----------------------------------------------------------------------
 docs/faq.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/54f1b77f/docs/faq.rst
----------------------------------------------------------------------
diff --git a/docs/faq.rst b/docs/faq.rst
index 2e6417b..04cf346 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -24,7 +24,7 @@ Here are some of the common causes:
   do not override their parent DAG's ``schedule_interval``.
 
 - Is your ``start_date`` beyond where you can see it in the UI? If you
-  set your it to some time say 3 months ago, you won't be able to see
+  set your ``start_date`` to some time say 3 months ago, you won't be able to see
   it in the main view in the UI, but you should be able to see it in the
   ``Menu -> Browse ->Task Instances``.
 
@@ -80,7 +80,7 @@ task. 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
-inactive DagRuns to get the new task to get onboarded properly.
+inactive DagRuns to get the new task onboarded properly.
 
 We recommend against using dynamic values as ``start_date``, especially
 ``datetime.now()`` as it can be quite confusing. The task is triggered
@@ -103,7 +103,7 @@ it enforces this idea of rounded schedules.
 
 When using ``depends_on_past=True`` it's important to pay special attention
 to ``start_date`` as the past dependency is not enforced only on the specific
-schedule of the ``start_date`` specified for the task. It' also
+schedule of the ``start_date`` specified for the task. It's also
 important to watch DagRun activity status in time when introducing
 new ``depends_on_past=True``, unless you are planning on running a backfill
 for the new task(s).
@@ -111,7 +111,7 @@ for the new task(s).
 Also important to note is that the tasks ``start_date``, in the context of a
 backfill CLI command, get overridden by the backfill's command ``start_date``.
 This allows for a backfill on tasks that have ``depends_on_past=True`` to
-actually start, if it wasn't the case, the backfill just wouldn't start.
+actually start, if that wasn't the case, the backfill just wouldn't start.
 
 How can I create DAGs dynamically?
 ----------------------------------