diff --git a/exercises/07_threads/07_ack/src/lib.rs b/exercises/07_threads/07_ack/src/lib.rs index dd90554..746c355 100644 --- a/exercises/07_threads/07_ack/src/lib.rs +++ b/exercises/07_threads/07_ack/src/lib.rs @@ -6,8 +6,8 @@ pub mod store; // Refer to the tests to understand the expected schema. pub enum Command { - Insert(todo!()), - Get(todo!()), + Insert { todo!() }, + Get { todo!() } } pub fn launch() -> Sender {