From 39a2e10e71e8e327c0d70a85261ba11ded27f802 Mon Sep 17 00:00:00 2001 From: Dou Liyang Date: Fri, 28 Apr 2017 16:45:24 +0800 Subject: [PATCH] Fix a typo --- Timers/timers-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timers/timers-3.md b/Timers/timers-3.md index 0257d23..ede4d1c 100644 --- a/Timers/timers-3.md +++ b/Timers/timers-3.md @@ -162,7 +162,7 @@ Note, that the `tick_device` structure contains two fields. The first field - `e The second field of the `tick_device` structure represents mode of the `tick_device`. As we already know, the mode can be one of the: ```C -num tick_device_mode { +enum tick_device_mode { TICKDEV_MODE_PERIODIC, TICKDEV_MODE_ONESHOT, };