This is an automated email from the ASF dual-hosted git repository.
taragolis 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 26f6a51c47 Fix class reference in Public Interface documentation
(#34454)
26f6a51c47 is described below
commit 26f6a51c47804d28779fa6277b48497c113fe721
Author: Andrey Anshin <[email protected]>
AuthorDate: Wed Sep 20 00:17:00 2023 +0400
Fix class reference in Public Interface documentation (#34454)
---
docs/apache-airflow/public-airflow-interface.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/apache-airflow/public-airflow-interface.rst
b/docs/apache-airflow/public-airflow-interface.rst
index 248d46472f..534cc0d0e6 100644
--- a/docs/apache-airflow/public-airflow-interface.rst
+++ b/docs/apache-airflow/public-airflow-interface.rst
@@ -59,8 +59,8 @@ DAGs
The DAG is Airflow's core entity that represents a recurring workflow. You can
create a DAG by
instantiating the :class:`~airflow.models.dag.DAG` class in your DAG file. You
can also instantiate
-them via :class::`~airflow.models.dagbag.DagBag` class that reads DAGs from a
file or a folder. DAGs
-can also have parameters specified via :class::`~airflow.models.param.Param`
class.
+them via :class:`~airflow.models.dagbag.DagBag` class that reads DAGs from a
file or a folder. DAGs
+can also have parameters specified via :class:`~airflow.models.param.Param`
class.
Airflow has a set of example DAGs that you can use to learn how to write DAGs