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

Miretpl pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-3-test by this push:
     new f2fd63cab07 [v3-3-test] Remove TaskFlow recommendation in doc part2 
(#72090) (#72118)
f2fd63cab07 is described below

commit f2fd63cab07d16855e0b1075c3fbde5e37e4c491
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 26 21:58:00 2026 +0200

    [v3-3-test] Remove TaskFlow recommendation in doc part2 (#72090) (#72118)
    
    (cherry picked from commit 00344cc117fe9bcb35ac09892df5b6ac9e122bac)
    
    Co-authored-by: raphaelauv <[email protected]>
    Co-authored-by: raphaelauv <[email protected]>
---
 airflow-core/docs/core-concepts/dags.rst        | 2 +-
 providers/snowflake/docs/operators/snowpark.rst | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow-core/docs/core-concepts/dags.rst 
b/airflow-core/docs/core-concepts/dags.rst
index 9b90be76710..8fbf1550db9 100644
--- a/airflow-core/docs/core-concepts/dags.rst
+++ b/airflow-core/docs/core-concepts/dags.rst
@@ -367,7 +367,7 @@ The ``@task.branch`` can also be used with XComs allowing 
branching context to d
 If you wish to implement your own operators with branching functionality, you 
can inherit from :class:`~airflow.operators.branch.BaseBranchOperator`, which 
behaves similarly to ``@task.branch`` decorator but expects you to provide an 
implementation of the method ``choose_branch``.
 
 .. note::
-    The ``@task.branch`` decorator is recommended over directly instantiating 
:class:`~airflow.providers.standard.operators.python.BranchPythonOperator` in a 
Dag. The latter should generally only be subclassed to implement a custom 
operator.
+    The ``@task.branch`` decorator is the Taskflow equivalent of 
:class:`~airflow.providers.standard.operators.python.BranchPythonOperator`. The 
latter should generally only be subclassed to implement a custom operator.
 
 As with the callable for ``@task.branch``, this method can return the ID of a 
downstream task, or a list of task IDs, which will be run, and all others will 
be skipped. It can also return None to skip all downstream task::
 
diff --git a/providers/snowflake/docs/operators/snowpark.rst 
b/providers/snowflake/docs/operators/snowpark.rst
index cbffb01e64c..c9bc0689ae9 100644
--- a/providers/snowflake/docs/operators/snowpark.rst
+++ b/providers/snowflake/docs/operators/snowpark.rst
@@ -28,9 +28,9 @@ Use the :class:`SnowparkOperator 
<airflow.providers.snowflake.operators.snowpark
     Currently, this operator does not support `Snowpark pandas API 
<https://docs.snowflake.com/en/developer-guide/snowpark/python/pandas-on-snowflake>`__
 because conflicting pandas version is used in Airflow.
     Consider using Snowpark pandas API with other Snowpark decorators or 
operators.
 
-.. tip::
+.. note::
 
-    The :doc:`@task.snowpark </decorators/snowpark>` decorator is recommended 
over the ``SnowparkOperator`` to run Snowpark Python code.
+    The :doc:`@task.snowpark </decorators/snowpark>` decorator is the Taskflow 
equivalent of ``SnowparkOperator`` to run Snowpark Python code.
 
 Prerequisite Tasks
 ^^^^^^^^^^^^^^^^^^

Reply via email to