From 0eae0d434d0563b589f0b04ce6e41ae1111a7342 Mon Sep 17 00:00:00 2001 From: kalyanr Date: Thu, 30 Jan 2025 17:58:20 +0530 Subject: [PATCH] update xcom docs --- docs/apache-airflow/core-concepts/xcoms.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/core-concepts/xcoms.rst b/docs/apache-airflow/core-concepts/xcoms.rst index fad9420cea642..d1929783dbd57 100644 --- a/docs/apache-airflow/core-concepts/xcoms.rst +++ b/docs/apache-airflow/core-concepts/xcoms.rst @@ -52,7 +52,7 @@ You can also use XComs in :ref:`templates `:: XComs are a relative of :doc:`variables`, with the main difference being that XComs are per-task-instance and designed for communication within a DAG run, while Variables are global and designed for overall configuration and value sharing. -If you want to push multiple XComs at once or rename the pushed XCom key, you can use set ``do_xcom_push`` and ``multiple_outputs`` arguments to ``True``, and then return a dictionary of values. +If you want to push multiple XComs at once you can set ``do_xcom_push`` and ``multiple_outputs`` arguments to ``True``, and then return a dictionary of values. .. note::