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: 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(-) (limited to 'ext/console/02_console.js') diff --git a/ext/console/02_console.js b/ext/console/02_console.js index 0f7b1a8db..9edf78ffd 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; } -- cgit v1.2.3