cargo fmt

This commit is contained in:
Yuki Okushi 2019-11-14 22:12:54 +09:00
parent ad1e583785
commit 2af0dfd7f8
7 changed files with 9 additions and 9 deletions

View File

@ -166,7 +166,7 @@ impl<T> Receiver<T> {
self.state = State::Closed(value); self.state = State::Closed(value);
} }
State::Closed(_) => {}, State::Closed(_) => {}
}; };
} }
} }