refactor: fix typo in web_worker.rs (#11792)

This commit is contained in:
Ikko Ashimine 2021-08-21 05:14:48 +09:00 committed by GitHub
parent 4ae57d185e
commit d81128109f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,7 +181,7 @@ impl From<SendableWebWorkerHandle> 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<Mutex> and other fun stuff.