From e5489446d5f557352bf7bb7bba8252d46410a099 Mon Sep 17 00:00:00 2001 From: Gamer Omega <76910135+gamer0mega@users.noreply.github.com> Date: Sat, 9 Jul 2022 22:30:29 +0300 Subject: [PATCH] fix(ext/console): Fix a typo in a warning when .timeEnd is called on an unknown timer (#15135) --- ext/console/02_console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/console/02_console.js b/ext/console/02_console.js index 0f7b1a8db3bfb5..9edf78ffdc455f 100644 --- a/ext/console/02_console.js +++ b/ext/console/02_console.js @@ -2139,7 +2139,7 @@ label = String(label); if (!MapPrototypeHas(timerMap, label)) { - this.warn(`Timer '${label}' does not exists`); + this.warn(`Timer '${label}' does not exist`); return; }