diff --git a/Cargo.toml b/Cargo.toml index f4cf07f9..cf660272 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = [ "libs/*", - # "backend", +# "backend", "cli", "ui/backend", "ui/frontend", diff --git a/libs/README.md b/libs/README.md index 62fd5f95..57471bce 100644 --- a/libs/README.md +++ b/libs/README.md @@ -402,7 +402,7 @@ and synced. ###### With the state -With the state to start a specific container we shold mark is as started +With the state to start a specific container we should mark is as started in the configuration. We could send `UpdateConfig` action and set a flag represented activity diff --git a/libs/tact/src/actor.rs b/libs/tact/src/actor.rs index c62f7749..9b07ae9d 100644 --- a/libs/tact/src/actor.rs +++ b/libs/tact/src/actor.rs @@ -39,7 +39,7 @@ pub trait Actor: Send + Sized + 'static { fn start(self) -> Address { let runtime = ActorRuntime::new(self); let address = runtime.context().address().clone(); - tokio::spawn(runtime.entyrpoint()); + tokio::spawn(runtime.entrypoint()); address } } diff --git a/libs/tact/src/runtime.rs b/libs/tact/src/runtime.rs index cf29d1ab..5a11a566 100644 --- a/libs/tact/src/runtime.rs +++ b/libs/tact/src/runtime.rs @@ -36,7 +36,7 @@ impl ActorRuntime { Self { actor, context } } - pub async fn entyrpoint(mut self) { + pub async fn entrypoint(mut self) { let name = type_name::(); let res = self.actor.initialize(&mut self.context).await; if let Err(err) = res {