rust/chg/src/runcommand.rs
changeset 44685 90e05b304902
parent 43818 ce088b38f92b
child 44689 6bef9d43cc55
--- a/rust/chg/src/runcommand.rs	Mon Nov 19 20:50:45 2018 +0900
+++ b/rust/chg/src/runcommand.rs	Tue Mar 31 23:25:26 2020 +0900
@@ -37,7 +37,7 @@
     Finished,
 }
 
-type CommandPoll<C, H> = io::Result<(AsyncS<(Client<C>, H, i32), CommandState<C, H>>)>;
+type CommandPoll<C, H> = io::Result<AsyncS<(Client<C>, H, i32), CommandState<C, H>>>;
 
 /// Future resolves to `(exit_code, client)`.
 #[must_use = "futures do nothing unless polled"]