missing space

This commit is contained in:
NikVolf 2016-04-12 12:18:48 +03:00
parent 36515570b4
commit ef3e9489a8

View File

@ -46,7 +46,7 @@ pub enum Error {
HandshakeFailed, HandshakeFailed,
} }
pub trait IpcInterface<T>:IpcConfig { pub trait IpcInterface<T>: IpcConfig {
/// reads the message from io, dispatches the call and returns serialized result /// reads the message from io, dispatches the call and returns serialized result
fn dispatch<R>(&self, r: &mut R) -> Vec<u8> where R: Read; fn dispatch<R>(&self, r: &mut R) -> Vec<u8> where R: Read;