mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-12-26 21:58:49 +01:00
Fix: use curly braces rather than parentheses
This commit is contained in:
parent
a1a96f6457
commit
d23f48a3a9
1 changed files with 2 additions and 2 deletions
|
@ -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<Command> {
|
||||
|
|
Loading…
Reference in a new issue