diff options
author | Gamer Omega <76910135+gamer0mega@users.noreply.github.com> | 2022-07-09 22:30:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 21:30:29 +0200 |
commit | e5489446d5f557352bf7bb7bba8252d46410a099 (patch) | |
tree | e2e9fd9661465648d9882f337b07fc129c73ae34 /ext/console/02_console.js | |
parent | 213d831ae3403402d55d3d084b2434c3ba8da70f (diff) |
fix(ext/console): Fix a typo in a warning when .timeEnd is called on an unknown timer (#15135)
Diffstat (limited to 'ext/console/02_console.js')
-rw-r--r-- | ext/console/02_console.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |