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

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

commit e9d372248148775b108867e41e7c900c899df5d9
Author: noel-gallagher <[email protected]>
AuthorDate: Thu Jun 6 15:10:44 2024 +0100

    fix typo in example_params_ui_tutorial (#40094)
    
    (cherry picked from commit a31b10edda0fa07f5c8e75c40842c909e8856b64)
---
 airflow/example_dags/example_params_ui_tutorial.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/airflow/example_dags/example_params_ui_tutorial.py 
b/airflow/example_dags/example_params_ui_tutorial.py
index 1f293415d1..82b38d07ac 100644
--- a/airflow/example_dags/example_params_ui_tutorial.py
+++ b/airflow/example_dags/example_params_ui_tutorial.py
@@ -146,14 +146,14 @@ with DAG(
             type="string",
             format="date-time",
             title="Date-Time Picker",
-            description="Please select a date and time, use the button on the 
left for a pup-up calendar.",
+            description="Please select a date and time, use the button on the 
left for a pop-up calendar.",
         ),
         "date": Param(
             f"{datetime.date.today()}",
             type="string",
             format="date",
             title="Date Picker",
-            description="Please select a date, use the button on the left for 
a pup-up calendar. "
+            description="Please select a date, use the button on the left for 
a pop-up calendar. "
             "See that here are no times!",
         ),
         "time": Param(
@@ -161,7 +161,7 @@ with DAG(
             type=["string", "null"],
             format="time",
             title="Time Picker",
-            description="Please select a time, use the button on the left for 
a pup-up tool.",
+            description="Please select a time, use the button on the left for 
a pop-up tool.",
         ),
         # Fields can be required or not. If the defined fields are typed they 
are getting required by default
         # (else they would not pass JSON schema validation) - to make typed 
fields optional you must

Reply via email to