aboutsummaryrefslogtreecommitdiff
path: root/net/src
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2023-11-15 17:16:39 +0300
committerhozan23 <hozan23@proton.me>2023-11-15 17:16:39 +0300
commit78884caca030104557ca277dd3a41cefb70f5be8 (patch)
treec33650dfe44a219e395dff1966d298b58b09acb3 /net/src
parentf0729022589ee8e48b5558ab30462f95d06fe6df (diff)
improve the TaskGroup API
the TaskGroup now holds an Executor instead of passing it when calling its spawn method also, define a global executor `Executor<'static>` and use static lifetime instead of a lifetime placeholder This improvement simplify the code for spawning a new task. There is no need to pass the executor around.
Diffstat (limited to 'net/src')
-rw-r--r--net/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/src/lib.rs b/net/src/lib.rs
index 914c6d8..0e4c361 100644
--- a/net/src/lib.rs
+++ b/net/src/lib.rs
@@ -17,8 +17,8 @@ pub use {
use error::{Error, Result};
-/// Represents Karyons's Net Error
+/// Represents karyons's Net Error
pub use error::Error as NetError;
-/// Represents Karyons's Net Result
+/// Represents karyons's Net Result
pub use error::Result as NetResult;