Skip to content

Commit 0484d09

Browse files
committed
update readme
1 parent 9b918d6 commit 0484d09

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,18 @@ void start(uint32_t time_ms);
9797
bool periodic(uint32_t time_ms);
9898

9999
// pause and resume the timer
100-
void pause(void);
101-
void resume(void);
100+
void pause();
101+
void resume();
102102

103103
// runs out the timer so `time_over()` returns true
104-
void expire(void);
104+
void expire();
105105

106106
// returns whether the time ran out
107-
bool time_over(void);
107+
bool time_over();
108108

109109
// returns whether the timer is paused
110-
bool is_paused(void);
110+
bool is_paused();
111111

112112
// returns the milliseconds until the timer runs out
113-
uint32_t time_left_ms(void);
113+
uint32_t time_left_ms();
114114
```

0 commit comments

Comments
 (0)