Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions connect/src/spirc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ struct CommandSender<'a> {
}

impl<'a> CommandSender<'a> {
fn new(spirc: &'a mut SpircTask, cmd: MessageType) -> CommandSender<'_> {
fn new(spirc: &'a mut SpircTask, cmd: MessageType) -> CommandSender<'a> {
let mut frame = protocol::spirc::Frame::new();
// frame version
frame.set_version(1);
Expand All @@ -1549,7 +1549,7 @@ impl<'a> CommandSender<'a> {
CommandSender { spirc, frame }
}

fn recipient(mut self, recipient: &'a str) -> CommandSender<'_> {
fn recipient(mut self, recipient: &'a str) -> CommandSender<'a> {
self.frame.recipient.push(recipient.to_owned());
self
}
Expand Down