Skip to content

Commit

Permalink
do not check links on docs.github.com
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Apr 24, 2022
1 parent 46acb77 commit c43ac44
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/linters/markdown-link-check.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
{
"pattern": "^https?://github\\.com/"
},
{
"pattern": "^https?://docs\\.github\\.com/"
},
{
"pattern": "^https?://reddit\\.com/"
}
Expand Down
10 changes: 8 additions & 2 deletions examples/input/gamepad_input_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,16 @@ fn gamepad_events(mut gamepad_event: EventReader<GamepadEvent>) {
info!("{:?} Disconnected", gamepad);
}
GamepadEvent(gamepad, GamepadEventType::ButtonChanged(button_type, value)) => {
info!("{:?} of {:?} is changed to {}", button_type, gamepad, value);
info!(
"Button {:?} of {:?} is changed to {}",
button_type, gamepad, value
);
}
GamepadEvent(gamepad, GamepadEventType::AxisChanged(axis_type, value)) => {
info!("{:?} of {:?} is changed to {}", axis_type, gamepad, value);
info!(
"Axis {:?} of {:?} is changed to {}",
axis_type, gamepad, value
);
}
}
}
Expand Down

0 comments on commit c43ac44

Please sign in to comment.