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:
parent
213d831ae3
commit
e5489446d5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue