Skip to content

Commit

Permalink
docs(lib.rs): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur-a authored Jan 5, 2025
1 parent 2d12377 commit 78f3ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl<T> Sender<T> {
// Set the state to signal there is a message on the channel.
// ORDERING: we use release ordering to ensure the write of the message is visible to the
// receiving thread. The EMPTY and DISCONNECTED branches do not observe any shared state,
// and thus we do not need acquire orderng. The RECEIVING branch manages synchronization
// and thus we do not need acquire ordering. The RECEIVING branch manages synchronization
// independent of this operation.
//
// EMPTY + 1 = MESSAGE
Expand Down

0 comments on commit 78f3ffa

Please sign in to comment.