Skip to content

Commit

Permalink
Fix syntax in docstrings
Browse files Browse the repository at this point in the history
CL: Fix syntax in docstrings

PUBLISHED_FROM=549349b88c6f97164a9e1240debbfb29d956e7b3
  • Loading branch information
cpq authored and cesantabot committed Mar 8, 2019
1 parent 0a3d7bf commit b150718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fw/include/mgos_timers.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*
* static void my_timer_cb(void *arg) {
* bool val = mgos_gpio_toggle(mgos_sys_config_get_pins_led());
* LOG(LL_INFO, ("uptime: %.2lf", mgos_uptime());
* LOG(LL_INFO, ("uptime: %.2lf", mgos_uptime()));
* (void) arg;
* }
*
Expand Down Expand Up @@ -99,7 +99,7 @@ typedef uintptr_t mgos_timer_id;
* ```c
* static void my_timer_cb(void *arg) {
* bool val = mgos_gpio_toggle(mgos_sys_config_get_pins_led());
* LOG(LL_INFO, ("uptime: %.2lf", mgos_uptime());
* LOG(LL_INFO, ("uptime: %.2lf", mgos_uptime()));
* (void) arg;
* }
*
Expand Down

0 comments on commit b150718

Please sign in to comment.