Skip to content

Commit

Permalink
chore: minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
CjS77 committed Nov 14, 2023
1 parent fd4b28e commit ba59da4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

members = [
"libs/*",
# "backend",
# "backend",
"cli",
"ui/backend",
"ui/frontend",
Expand Down
2 changes: 1 addition & 1 deletion libs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libs/tact/src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub trait Actor: Send + Sized + 'static {
fn start(self) -> Address<Self> {
let runtime = ActorRuntime::new(self);
let address = runtime.context().address().clone();
tokio::spawn(runtime.entyrpoint());
tokio::spawn(runtime.entrypoint());
address
}
}
2 changes: 1 addition & 1 deletion libs/tact/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl<A: Actor> ActorRuntime<A> {
Self { actor, context }
}

pub async fn entyrpoint(mut self) {
pub async fn entrypoint(mut self) {
let name = type_name::<Self>();
let res = self.actor.initialize(&mut self.context).await;
if let Err(err) = res {
Expand Down

0 comments on commit ba59da4

Please sign in to comment.