docs(expression.py): fix typo

This commit is contained in:
lovetheguitar 2024-06-22 19:50:26 +02:00
parent 73bc35ce2b
commit 3cce243774
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ident: (\w|:|\+|-|\.|\[|\]|\\|/)+
The semantics are:
- Empty expression evaluates to False.
- ident evaluates to True of False according to a provided matcher function.
- ident evaluates to True or False according to a provided matcher function.
- or/and/not evaluate according to the usual boolean semantics.
"""