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 a706fc539e Clarifying documentation text (#36745)
a706fc539e is described below
commit a706fc539ec46e82e818ae6a6d14845cf2678377
Author: Amogh Desai <[email protected]>
AuthorDate: Fri Jan 12 15:22:28 2024 +0530
Clarifying documentation text (#36745)
---
docs/apache-airflow/core-concepts/dags.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/core-concepts/dags.rst
b/docs/apache-airflow/core-concepts/dags.rst
index 5965a6aa40..6e408f1d1f 100644
--- a/docs/apache-airflow/core-concepts/dags.rst
+++ b/docs/apache-airflow/core-concepts/dags.rst
@@ -800,7 +800,7 @@ For the ``regexp`` pattern syntax (the default), each line
in ``.airflowignore``
specifies a regular expression pattern, and directories or files whose names
(not DAG id)
match any of the patterns would be ignored (under the hood,
``Pattern.search()`` is used
to match the pattern). Use the ``#`` character to indicate a comment; all
characters
-on a line following a ``#`` will be ignored.
+on lines starting with ``#`` will be ignored.
As with most regexp matching in Airflow, the regexp engine is ``re2``, which
explicitly
doesn't support many advanced features, please check its