Skip to content

Commit

Permalink
fix(ext/console): Fix a typo in a warning when .timeEnd is called on …
Browse files Browse the repository at this point in the history
…an unknown timer (denoland#15135)
  • Loading branch information
gamer0mega authored Jul 9, 2022
1 parent 213d831 commit e548944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/console/02_console.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit e548944

Please sign in to comment.