Skip to content

Commit

Permalink
Add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
noiob committed Nov 18, 2017
1 parent ddff297 commit efb641a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdl2/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
//! let mut i = 0;
//! 'running: loop {
//! i = (i + 1) % 255;
//! canvas.set_draw_color(Color::RGB(i, 64, 255 - i))
//! canvas.set_draw_color(Color::RGB(i, 64, 255 - i));
//! canvas.clear();
//! for event in event_pump.poll_iter() {
//! match event {
Expand Down

0 comments on commit efb641a

Please sign in to comment.