From 004d07dccd69c9fae8370665632d90401f770938 Mon Sep 17 00:00:00 2001 From: Libing Chen Date: Fri, 15 Oct 2021 02:25:48 -0700 Subject: [PATCH] fix(docs): correct `pattern.match()` to `pattern.exec()` (#12450) --- ext/url/lib.deno_url.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/url/lib.deno_url.d.ts b/ext/url/lib.deno_url.d.ts index b2ef4095fa..bb13bdbccd 100644 --- a/ext/url/lib.deno_url.d.ts +++ b/ext/url/lib.deno_url.d.ts @@ -225,7 +225,7 @@ declare interface URLPatternResult { * ```ts * // Specify the pattern as structured data. * const pattern = new URLPattern({ pathname: "/users/:user" }); - * const match = pattern.match("/users/joe"); + * const match = pattern.exec("/users/joe"); * console.log(match.pathname.groups.user); // joe * ``` * @@ -277,15 +277,15 @@ declare class URLPattern { * const pattern = new URLPattern("https://example.com/books/:id"); * * // Match a url string. - * let match = pattern.match("https://example.com/books/123"); + * let match = pattern.exec("https://example.com/books/123"); * console.log(match.pathname.groups.id); // 123 * * // Match a relative url with a base. - * match = pattern.match("/books/123", "https://example.com"); + * match = pattern.exec("/books/123", "https://example.com"); * console.log(match.pathname.groups.id); // 123 * * // Match an object of url components. - * match = pattern.match({ pathname: "/books/123" }); + * match = pattern.exec({ pathname: "/books/123" }); * console.log(match.pathname.groups.id); // 123 * ``` */