Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Dec 27, 2023
1 parent 4cc2dbc commit fe34ce0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crate/cmd_model/src/cmd_block_outcome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub enum CmdBlockOutcome<T, E> {
///
/// # Design Note
///
/// When implemeting this, the following structures were considered:
/// When implementing this, the following structures were considered:
///
/// * Having separate fields for `T` and `StreamOutcome<()>`.
/// * Having a single `StreamOutcome<T>` field.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
1. In every workplace I've been, these two kinds of processes exist.
2. The first is to compile an application, and upload the binary somewhere.
3. The second is to deploy that application to some servers.
4. Who here has ever started a process, and immediatelly regretted it? like "aah, forgot to change that one thing!"
4. Who here has ever started a process, and immediately regretted it? like "aah, forgot to change that one thing!"
-->
2 changes: 1 addition & 1 deletion examples/download/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ where
value: (_states_current, _states_goal),
} = StatesDiscoverCmd::current_and_goal(cmd_ctx).await?
else {
panic!("Expeted `StatesDiscoverCmd::current_and_goal` to complete successfully.");
panic!("Expected `StatesDiscoverCmd::current_and_goal` to complete successfully.");
};
Ok(())
}
Expand Down

0 comments on commit fe34ce0

Please sign in to comment.