summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSatya Rohith <me@satyarohith.com>2021-10-18 00:07:18 +0530
committerGitHub <noreply@github.com>2021-10-18 00:07:18 +0530
commit63379185e2a1937f6830cbff634f178ca491672a (patch)
tree62f19d9629c442a21fb815764e719ec6d15914b3
parentff932b411d63269dbd4d30ea6bd0aa5160fd8aff (diff)
docs(ext/url): typo in URLPatternResult (#12470)
-rw-r--r--ext/url/lib.deno_url.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/url/lib.deno_url.d.ts b/ext/url/lib.deno_url.d.ts
index bb13bdbcc..e1cfdc392 100644
--- a/ext/url/lib.deno_url.d.ts
+++ b/ext/url/lib.deno_url.d.ts
@@ -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];