Merge pull request #6543 from herberteuler/master

primop_match: fix example letter case in document
This commit is contained in:
Eelco Dolstra 2022-05-18 10:56:11 +02:00 committed by GitHub
commit 51d13c43c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3529,7 +3529,7 @@ static RegisterPrimOp primop_match({
builtins.match "[[:space:]]+([[:upper:]]+)[[:space:]]+" " FOO "
```
Evaluates to `[ "foo" ]`.
Evaluates to `[ "FOO" ]`.
)s",
.fun = prim_match,
});