1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -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 cjihrig
parent 46fd0fe2da
commit 00dfda43a9
No known key found for this signature in database
GPG key ID: 7434390BDBE9B9C5

View file

@ -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;
}