Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: th4s <[email protected]>
  • Loading branch information
n-lebel and th4s authored Nov 22, 2024
1 parent a8a4b14 commit 8d8a546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

`UnboundedMemorySink` and `UnboundedMemoryStream` mirroring the `MemorySink` and `MemoryStream` wrappers of `futures::mpsc::{Sender, Receiver} for `futures::mpsc::{UnboundedSender, UnboundedReceiver}.
`UnboundedMemorySink` and `UnboundedMemoryStream` mirroring the `MemorySink` and `MemoryStream` wrappers of `futures::mpsc::{Sender, Receiver}` for `futures::mpsc::{UnboundedSender, UnboundedReceiver}`.
2 changes: 1 addition & 1 deletion serio/src/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl Sink for UnboundedMemorySink {
}
}

/// An Unbounded memory stream that can be used to receive any deserializable type from the sender.
/// An unbounded memory stream that can be used to receive any deserializable type from the sender.
#[derive(Debug)]
pub struct UnboundedMemoryStream(mpsc::UnboundedReceiver<Item>);

Expand Down

0 comments on commit 8d8a546

Please sign in to comment.