Chore/semi colons (#799)

* Add helpers for easier Transports creation (#777)

* Add helpers for easier Transports creation

* Fix doctests

* Fix ' ;' occurrences
This commit is contained in:
James Ray
2018-12-19 22:22:39 +00:00
committed by Toralf Wittner
parent 83320e0347
commit f541df391a
9 changed files with 18 additions and 18 deletions

View File

@ -238,7 +238,7 @@ where TSocket: AsyncRead + AsyncWrite
PingListenerState::Listening => {
match self.inner.poll() {
Ok(Async::Ready(Some(payload))) => {
debug!("Received ping (payload={:?}) ; sending back", payload);
debug!("Received ping (payload={:?}); sending back", payload);
self.state = PingListenerState::Sending(payload.freeze())
},
Ok(Async::Ready(None)) => self.state = PingListenerState::Closing,