1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00

fix(ext/console): Fix a typo in a warning when .timeEnd is called on an unknown timer (#15135)

This commit is contained in:
Gamer Omega 2022-07-09 22:30:29 +03:00 committed by GitHub
parent 213d831ae3
commit e5489446d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2139,7 +2139,7 @@
label = String(label); label = String(label);
if (!MapPrototypeHas(timerMap, label)) { if (!MapPrototypeHas(timerMap, label)) {
this.warn(`Timer '${label}' does not exists`); this.warn(`Timer '${label}' does not exist`);
return; return;
} }