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:
parent
46fd0fe2da
commit
00dfda43a9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue