You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by fo...@apache.org on 2018/01/22 09:32:44 UTC

incubator-airflow git commit: [AIRFLOW-XXX] Typo node to nodes

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 279481968 -> 375ed75ff


[AIRFLOW-XXX] Typo node to nodes

Closes #2950 from maxcountryman/patch-1


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

Branch: refs/heads/master
Commit: 375ed75ff1ba1abf16e18ae29b62320bebbf860f
Parents: 2794819
Author: Max Countryman <ma...@me.com>
Authored: Mon Jan 22 10:32:11 2018 +0100
Committer: Fokko Driesprong <fo...@godatadriven.com>
Committed: Mon Jan 22 10:32:17 2018 +0100

----------------------------------------------------------------------
 airflow/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/375ed75f/airflow/models.py
----------------------------------------------------------------------
diff --git a/airflow/models.py b/airflow/models.py
index edb3b67..0610640 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -2003,7 +2003,7 @@ class SkipMixin(LoggingMixin):
 class BaseOperator(LoggingMixin):
     """
     Abstract base class for all operators. Since operators create objects that
-    become node in the dag, BaseOperator contains many recursive methods for
+    become nodes in the dag, BaseOperator contains many recursive methods for
     dag crawling behavior. To derive this class, you are expected to override
     the constructor as well as the 'execute' method.