From 50d7e093471ad667c78475c4e9ed0d39a0aaf93e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 23 Mar 2021 11:33:14 +0100 Subject: [PATCH] commmon: Document the executor module --- matrix_sdk_common/src/executor.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/matrix_sdk_common/src/executor.rs b/matrix_sdk_common/src/executor.rs index 2d2cce52..b8e34f87 100644 --- a/matrix_sdk_common/src/executor.rs +++ b/matrix_sdk_common/src/executor.rs @@ -1,3 +1,5 @@ +//! Abstraction over an executor so we can spawn tasks under WASM the same way +//! we do usually. #[cfg(target_arch = "wasm32")] use std::{ pin::Pin,