Repository: incubator-airflow
Updated Branches:
  refs/heads/master 16a182c0e -> 090f51816


[AIRFLOW-397] Documentation: Fix typo "instatiating" to "instantiating"


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

Branch: refs/heads/master
Commit: de4b7c62fbc9b3e66155da84721e97518b7ccbc2
Parents: 16a182c
Author: Jamie Alessio <ja...@stoic.net>
Authored: Thu Aug 4 00:34:39 2016 -0700
Committer: Jamie Alessio <ja...@calthorpeanalytics.com>
Committed: Thu Aug 4 12:45:17 2016 -0700

----------------------------------------------------------------------
 airflow/example_dags/example_http_operator.py | 2 +-
 docs/tutorial.rst                             | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/de4b7c62/airflow/example_dags/example_http_operator.py
----------------------------------------------------------------------
diff --git a/airflow/example_dags/example_http_operator.py 
b/airflow/example_dags/example_http_operator.py
index 12b0448..18a67f5 100644
--- a/airflow/example_dags/example_http_operator.py
+++ b/airflow/example_dags/example_http_operator.py
@@ -38,7 +38,7 @@ dag = DAG('example_http_operator', default_args=default_args)
 
 dag.doc_md = __doc__
 
-# t1, t2 and t3 are examples of tasks created by instatiating operators
+# t1, t2 and t3 are examples of tasks created by instantiating operators
 t1 = SimpleHttpOperator(
     task_id='post_op',
     endpoint='api/v1.0/nodes',

http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/de4b7c62/docs/tutorial.rst
----------------------------------------------------------------------
diff --git a/docs/tutorial.rst b/docs/tutorial.rst
index a93479c..97bbe11 100644
--- a/docs/tutorial.rst
+++ b/docs/tutorial.rst
@@ -39,7 +39,7 @@ complicated, a line by line explanation follows below.
 
     dag = DAG('tutorial', default_args=default_args)
 
-    # t1, t2 and t3 are examples of tasks created by instatiating operators
+    # t1, t2 and t3 are examples of tasks created by instantiating operators
     t1 = BashOperator(
         task_id='print_date',
         bash_command='date',
@@ -292,7 +292,7 @@ something like this:
     dag = DAG(
         'tutorial', default_args=default_args, schedule_interval=timedelta(1))
 
-    # t1, t2 and t3 are examples of tasks created by instatiating operators
+    # t1, t2 and t3 are examples of tasks created by instantiating operators
     t1 = BashOperator(
         task_id='print_date',
         bash_command='date',

Reply via email to