You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/09/23 03:19:31 UTC

[airflow] 10/13: fix typo in code sample (#26538)

This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch v2-4-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c58918124708fa8718b2fa82419012ac70388d79
Author: fritz-astronomer <80...@users.noreply.github.com>
AuthorDate: Tue Sep 20 16:55:06 2022 -0400

    fix typo in code sample (#26538)
    
    (cherry picked from commit 11a381d8d5b4ea54e9164e633e899709aead4fb7)
---
 docs/apache-airflow/concepts/dynamic-task-mapping.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/concepts/dynamic-task-mapping.rst b/docs/apache-airflow/concepts/dynamic-task-mapping.rst
index dac4718f9c..9f02b92215 100644
--- a/docs/apache-airflow/concepts/dynamic-task-mapping.rst
+++ b/docs/apache-airflow/concepts/dynamic-task-mapping.rst
@@ -305,7 +305,7 @@ Since it is common to want to transform the output data format for task mapping,
 
     from airflow.exceptions import AirflowSkipException
 
-    filenames = S3ListOperator(...)  # Unchanged.
+    list_filenames = S3ListOperator(...)  # Unchanged.
 
 
     def create_copy_kwargs(filename):