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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new a31b10edda fix typo in example_params_ui_tutorial (#40094)
a31b10edda is described below

commit a31b10edda0fa07f5c8e75c40842c909e8856b64
Author: noel-gallagher <70592626+noel-gallag...@users.noreply.github.com>
AuthorDate: Thu Jun 6 15:10:44 2024 +0100

    fix typo in example_params_ui_tutorial (#40094)
---
 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