We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816b1f5 commit 4b6540cCopy full SHA for 4b6540c
exercises/enums/enums3.rs
@@ -51,7 +51,7 @@ mod tests {
51
position: Point{ x: 0, y: 0 },
52
color: (0, 0, 0)
53
};
54
- state.process(Message::ChangeColor(255, 0, 255));
+ state.process(Message::ChangeColor((255, 0, 255)));
55
state.process(Message::Echo(String::from("hello world")));
56
state.process(Message::Move(Point{ x: 10, y: 15 }));
57
state.process(Message::Quit);
0 commit comments