Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id ADB7B200B5A for ; Thu, 4 Aug 2016 21:54:53 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AC41C160A6A; Thu, 4 Aug 2016 19:54:53 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 00A36160AAB for ; Thu, 4 Aug 2016 21:54:52 +0200 (CEST) Received: (qmail 63196 invoked by uid 500); 4 Aug 2016 19:54:52 -0000 Mailing-List: contact commits-help@airflow.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airflow.incubator.apache.org Delivered-To: mailing list commits@airflow.incubator.apache.org Received: (qmail 63186 invoked by uid 99); 4 Aug 2016 19:54:52 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Aug 2016 19:54:52 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id ADFE6188690 for ; Thu, 4 Aug 2016 19:54:51 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id KBMDL8R-ncH9 for ; Thu, 4 Aug 2016 19:54:49 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with SMTP id 414D46125D for ; Thu, 4 Aug 2016 19:54:49 +0000 (UTC) Received: (qmail 63093 invoked by uid 99); 4 Aug 2016 19:54:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Aug 2016 19:54:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8DC06E0B40; Thu, 4 Aug 2016 19:54:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sanand@apache.org To: commits@airflow.incubator.apache.org Date: Thu, 04 Aug 2016 19:54:48 -0000 Message-Id: <77b2ff1f02cc4e8b9455242899e551be@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] incubator-airflow git commit: [AIRFLOW-397] Documentation: Fix typo "instatiating" to "instantiating" archived-at: Thu, 04 Aug 2016 19:54:53 -0000 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 Authored: Thu Aug 4 00:34:39 2016 -0700 Committer: Jamie Alessio 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',