Merge pull request #1564 from behnejad/patch-1

Update README.md
This commit is contained in:
Sergey Lyubka 2022-05-30 14:32:17 +01:00 committed by GitHub
commit a4a70270ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2337,7 +2337,7 @@ Usage example:
```c
// Assume that hm->uri holds /foo/bar. Then we can match the requested URI:
struct mg_str caps[3]; // Two wildcard symbols '*' plus 1
if (mg_match(hm->uri, mg_str("/*/*"))) {
if (mg_match(hm->uri, mg_str("/*/*"), caps)) {
// caps[0] holds `foo`, caps[1] holds `bar`.
}
```