1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

docs(ext/url): typo in URLPatternResult (#12470)

This commit is contained in:
Satya Rohith 2021-10-18 00:07:18 +05:30 committed by GitHub
parent ff932b411d
commit 63379185e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -192,7 +192,7 @@ declare interface URLPatternComponentResult {
groups: Record<string, string>;
}
/** `URLPatternResult` is the object returned from `URLPattern.match`. */
/** `URLPatternResult` is the object returned from `URLPattern.exec`. */
declare interface URLPatternResult {
/** The inputs provided when matching. */
inputs: [URLPatternInit] | [URLPatternInit, string];