From d81128109fd9107afb19b4abf789e311b1a09ab3 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 21 Aug 2021 05:14:48 +0900 Subject: refactor: fix typo in web_worker.rs (#11792) --- runtime/web_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs index 2594b9049..06e5d2e3b 100644 --- a/runtime/web_worker.rs +++ b/runtime/web_worker.rs @@ -181,7 +181,7 @@ impl From for WebWorkerHandle { /// This is the handle to the web worker that the parent thread uses to /// communicate with the worker. It is created from a `SendableWebWorkerHandle` /// which is sent to the parent thread from the worker thread where it is -/// created. The reason for this seperation is that the handle first needs to be +/// created. The reason for this separation is that the handle first needs to be /// `Send` when transferring between threads, and then must be `Clone` when it /// has arrived on the parent thread. It can not be both at once without large /// amounts of Arc and other fun stuff. -- cgit v1.2.3