Skip to content

Commit

Permalink
Grammar and wording improvements Events
Browse files Browse the repository at this point in the history
  • Loading branch information
milki committed Mar 8, 2011
1 parent 8c3e91c commit 817a5f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/03-events.pod
Expand Up @@ -205,7 +205,7 @@ To handle the keyboard specifications we will create another event callback.
$app->draw_rect( [0,0,$app->w, $app->h], 0 ) if $key_name =~ /^c$/;

#Exit if we press a Q or q
$app->stop() if $key_name =~ /^q$/
$app->stop() if $key_name =~ /^q$/;
}
$app->update();
}
Expand Down

0 comments on commit 817a5f3

Please sign in to comment.