Fix match function signature to match its description

This commit is contained in:
Baptiste Beauplat 2021-06-17 14:37:51 +02:00
parent 61a93fdc0d
commit 905a1dd474
No known key found for this signature in database
GPG Key ID: 17494B10795DD733
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ null
Signature:
```
function match(pattern, text, mode)
function match(pattern, value, mode)
```
Returns true if the wildcard (`?*`) `pattern` matches the `value`, false otherwise.