Skip to content

Commit

Permalink
[CI] Format code according to conventions (qmk#12623)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <[email protected]>
  • Loading branch information
2 people authored and nhongooi committed Dec 5, 2021
1 parent fcf5c6b commit 1fc4642
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion quantum/wpm.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ void update_wpm(uint16_t keycode) {
void decay_wpm(void) {
if (timer_elapsed(wpm_timer) > 1000) {
current_wpm += (-current_wpm) * wpm_smoothing;
wpm_timer = timer_read();
wpm_timer = timer_read();
}
}
1 change: 0 additions & 1 deletion quantum/wpm.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

#include "quantum.h"


#ifndef WPM_ESTIMATED_WORD_SIZE
# define WPM_ESTIMATED_WORD_SIZE 5
#endif
Expand Down

0 comments on commit 1fc4642

Please sign in to comment.