Skip to content

Commit

Permalink
fix(enums3): add extra tuple comment
Browse files Browse the repository at this point in the history
  • Loading branch information
shadows-withal authored Dec 23, 2022
1 parent 3146956 commit 40b1b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/enums/enums3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mod tests {
position: Point { x: 0, y: 0 },
color: (0, 0, 0),
};
state.process(Message::ChangeColor((255, 0, 255)));
state.process(Message::ChangeColor((255, 0, 255))); // Remember: The extra parentheses mark a tuple type.
state.process(Message::Echo(String::from("hello world")));
state.process(Message::Move(Point { x: 10, y: 15 }));
state.process(Message::Quit);
Expand Down

0 comments on commit 40b1b07

Please sign in to comment.