1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore(ext/web): fix typo (#16248)

implictly -> implicitly
assiging -> assigning
This commit is contained in:
Xiao Xiao 2022-10-12 15:47:15 +08:00 committed by GitHub
parent d47b17d37d
commit ba3d0da6ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -914,8 +914,8 @@ declare class MessagePort extends EventTarget {
postMessage(message: any, transfer: Transferable[]): void;
postMessage(message: any, options?: StructuredSerializeOptions): void;
/**
* Begins dispatching messages received on the port. This is implictly called
* when assiging a value to `this.onmessage`.
* Begins dispatching messages received on the port. This is implicitly called
* when assigning a value to `this.onmessage`.
*/
start(): void;
addEventListener<K extends keyof MessagePortEventMap>(