diff options
author | Satya Rohith <me@satyarohith.com> | 2021-06-07 17:49:33 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 14:19:33 +0200 |
commit | b6400a25a0ee60467a0287d725e61c876677e103 (patch) | |
tree | 7577846005e160141ffb8bd9d861dbfe365324ff /extensions/broadcast_channel/01_broadcast_channel.js | |
parent | 89290741d18d9b247cefccdc95563ec688a28491 (diff) |
refactor(runtime): move performance API to timers extension (#10818)
Co-authored-by: Luca Casonato <hello@lcas.dev>
Diffstat (limited to 'extensions/broadcast_channel/01_broadcast_channel.js')
-rw-r--r-- | extensions/broadcast_channel/01_broadcast_channel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/broadcast_channel/01_broadcast_channel.js b/extensions/broadcast_channel/01_broadcast_channel.js index 7670b0cfd..c2937105e 100644 --- a/extensions/broadcast_channel/01_broadcast_channel.js +++ b/extensions/broadcast_channel/01_broadcast_channel.js @@ -105,7 +105,7 @@ constructor(name) { super(); - const prefix = "Failed to construct 'broadcastChannel'"; + const prefix = "Failed to construct 'BroadcastChannel'"; webidl.requiredArguments(arguments.length, 1, { prefix }); this[_name] = webidl.converters["DOMString"](name, { |