Fix readme

This commit is contained in:
Tim Kuehn
2016-09-14 01:36:57 -07:00
parent e8902c21a2
commit 6d1fbab73c

View File

@@ -69,7 +69,7 @@ impl SyncService for HelloServer {
fn main() {
let addr = "localhost:10000";
let _server = HelloServer.listen(addr).unwrap();
let _server = HelloServer.listen(addr);
let client = SyncClient::connect(addr).unwrap();
println!("{}", client.hello(&"Mom".to_string()).unwrap());
}