From ef3e9489a84354a7b73bb6e533940d4ca6ef8d1c Mon Sep 17 00:00:00 2001 From: NikVolf Date: Tue, 12 Apr 2016 12:18:48 +0300 Subject: [PATCH] missing space --- ipc/rpc/src/interface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/rpc/src/interface.rs b/ipc/rpc/src/interface.rs index 5c0d57612..59da58092 100644 --- a/ipc/rpc/src/interface.rs +++ b/ipc/rpc/src/interface.rs @@ -46,7 +46,7 @@ pub enum Error { HandshakeFailed, } -pub trait IpcInterface:IpcConfig { +pub trait IpcInterface: IpcConfig { /// reads the message from io, dispatches the call and returns serialized result fn dispatch(&self, r: &mut R) -> Vec where R: Read;