Remove unwanted whitespace

This commit is contained in:
Adam Wright
2016-02-11 20:33:18 -08:00
parent 62a9fb6391
commit 8bbcb16d7f

View File

@@ -267,7 +267,7 @@ pub trait Serve: Send + Sync {
/// The type of request received by the server
type Request: 'static + fmt::Debug + serde::ser::Serialize + serde::de::Deserialize + Send;
/// The type of reply sent by the server
type Reply : 'static + fmt::Debug + serde::ser::Serialize + serde::de::Deserialize + Send;
type Reply: 'static + fmt::Debug + serde::ser::Serialize + serde::de::Deserialize + Send;
/// Return a reply for a given request
fn serve(&self, request: Self::Request) -> Self::Reply;