You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by pi...@apache.org on 2023/01/12 00:40:55 UTC

[airflow] branch v2-5-test updated: Update dynamic-task-mapping.rst (#28797)

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

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


The following commit(s) were added to refs/heads/v2-5-test by this push:
     new 2c735b248f Update dynamic-task-mapping.rst (#28797)
2c735b248f is described below

commit 2c735b248fc565f78684467f46aa2f904699a95e
Author: Elena Sadler <36...@users.noreply.github.com>
AuthorDate: Mon Jan 9 02:16:12 2023 -0500

    Update dynamic-task-mapping.rst (#28797)
    
    (cherry picked from commit 6ca67ba98ee74c1b42a93f9812ddb8a0e02c041d)
---
 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 d15c0ada77..8f5f2ee6e2 100644
--- a/docs/apache-airflow/concepts/dynamic-task-mapping.rst
+++ b/docs/apache-airflow/concepts/dynamic-task-mapping.rst
@@ -338,7 +338,7 @@ There are a couple of things to note:
 Combining upstream data (aka "zipping")
 =======================================
 
-It is also to want to combine multiple input sources into one task mapping iterable. This is generally known as "zipping" (like Python's built-in ``zip()`` function), and is also performed as pre-processing of the downstream task.
+It is also common to want to combine multiple input sources into one task mapping iterable. This is generally known as "zipping" (like Python's built-in ``zip()`` function), and is also performed as pre-processing of the downstream task.
 
 This is especially useful for conditional logic in task mapping. For example, if you want to download files from S3, but rename those files, something like this would be possible: