Skip to content

Commit

Permalink
Fix typo in documentation: 'mspc' -> 'mpsc' (#888)
Browse files Browse the repository at this point in the history
  • Loading branch information
msk authored Oct 27, 2024
1 parent 8e60821 commit 147bbcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mistralrs-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pub struct MistralRsConfig {
}

/// The MistralRs struct handles sending requests to the engine.
/// It is the core multi-threaded component of mistral.rs, and uses `mspc`
/// It is the core multi-threaded component of mistral.rs, and uses `mpsc`
/// `Sender` and `Receiver` primitives to send and receive requests to the
/// engine.
pub struct MistralRs {
Expand Down
2 changes: 1 addition & 1 deletion mistralrs-core/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl NormalRequest {

#[derive(Clone)]
/// A request to the Engine, encapsulating the various parameters as well as
/// the `mspc` response `Sender` used to return the [`Response`].
/// the `mpsc` response `Sender` used to return the [`Response`].
pub enum Request {
Normal(NormalRequest),
ReIsq(IsqType),
Expand Down

0 comments on commit 147bbcb

Please sign in to comment.