From 41a70898adfc61b9020dfdfec17d374aac70d935 Mon Sep 17 00:00:00 2001 From: Ian Bull Date: Tue, 1 Oct 2024 11:26:06 -0700 Subject: refactor(ext): align error messages (#25914) Aligns the error messages in the ext folder to be in-line with the Deno style guide. https://github.com/denoland/deno/issues/25269 --- ext/url/00_url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/url') diff --git a/ext/url/00_url.js b/ext/url/00_url.js index 577caba90..ec875da76 100644 --- a/ext/url/00_url.js +++ b/ext/url/00_url.js @@ -139,7 +139,7 @@ class URLSearchParams { throw new TypeError( `${prefix}: Item ${ i + 0 - } in the parameter list does have length 2 exactly.`, + } in the parameter list does have length 2 exactly`, ); } return [pair[0], pair[1]]; -- cgit v1.2.3