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 a724ff562083299569621a26e51e90eaaf41d158 Author: bangjiehan <[email protected]> AuthorDate: Tue Jun 11 17:40:27 2024 +0800 Fix minor typo in dags.rst (#40169) (cherry picked from commit e9e3c937f31f07b9235ffc74ac70482c864800e9) --- 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 836b5cef8c..3467c7ec47 100644 --- a/docs/apache-airflow/core-concepts/dags.rst +++ b/docs/apache-airflow/core-concepts/dags.rst @@ -815,7 +815,7 @@ doesn't support many advanced features, please check its With the ``glob`` syntax, the patterns work just like those in a ``.gitignore`` file: -* The ``*`` character will any number of characters, except ``/`` +* The ``*`` character will match any number of characters, except ``/`` * The ``?`` character will match any single character, except ``/`` * The range notation, e.g. ``[a-zA-Z]``, can be used to match one of the characters in a range * A pattern can be negated by prefixing with ``!``. Patterns are evaluated in order so
