Merge pull request #144 from BafDyce/fix-comment-keyboard-input-event-example

Fix comment in keyboard_input_event example
This commit is contained in:
Carter Anderson 2020-08-12 18:57:21 -07:00 committed by GitHub
commit 19d2f9c2cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ struct State {
event_reader: EventReader<KeyboardInput>,
}
/// This system prints out all mouse events as they come in
/// This system prints out all keyboard events as they come in
fn print_keyboard_event_system(
mut state: ResMut<State>,
keyboard_input_events: Res<Events<KeyboardInput>>,