You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/11/10 00:15:26 UTC

[airflow] branch master updated: Fix typo in docstrings (#12220)

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 cd82fc3  Fix typo in docstrings (#12220)
cd82fc3 is described below

commit cd82fc3adab4d88de805a90bb20ec6207a28b310
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Tue Nov 10 00:14:32 2020 +0000

    Fix typo in docstrings (#12220)
    
    `meatadata` -> `metadata`
---
 airflow/api_connexion/schemas/task_instance_schema.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/api_connexion/schemas/task_instance_schema.py b/airflow/api_connexion/schemas/task_instance_schema.py
index 27bf4a6..eb9e862 100644
--- a/airflow/api_connexion/schemas/task_instance_schema.py
+++ b/airflow/api_connexion/schemas/task_instance_schema.py
@@ -146,7 +146,7 @@ class TaskInstanceReferenceSchema(Schema):
 
 
 class TaskInstanceReferenceCollection(NamedTuple):
-    """List of objects with meatadata about taskinstance and dag_run_id"""
+    """List of objects with metadata about taskinstance and dag_run_id"""
 
     task_instances: List[Tuple[TaskInstance, str]]