This is an automated email from the ASF dual-hosted git repository.
weilee 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 e9e3c937f3 Fix minor typo in dags.rst (#40169)
e9e3c937f3 is described below
commit e9e3c937f31f07b9235ffc74ac70482c864800e9
Author: bangjiehan <[email protected]>
AuthorDate: Tue Jun 11 17:40:27 2024 +0800
Fix minor typo in dags.rst (#40169)
---
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 5c989bab7a..482b604f33 100644
--- a/docs/apache-airflow/core-concepts/dags.rst
+++ b/docs/apache-airflow/core-concepts/dags.rst
@@ -816,7 +816,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