summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c')
-rw-r--r--FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c b/FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c
index 6fc5b4d8a..366db237d 100644
--- a/FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c
+++ b/FreeRTOS/Demo/CORTEX_Kinetis_K60_Tower_IAR/main-full.c
@@ -452,7 +452,7 @@ static void prvCreateDemoSpecificTimers( void )
this file. */
xLEDButtonTimer = xTimerCreate( "ButtonLEDTimer", /* A text name, purely to help debugging. */
( mainBUTTON_LED_TIMER_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
- pdFALSE, /* This is a one shot timer, so xAutoReload is set to pdFALSE. */
+ pdFALSE, /* This is a one-shot timer, so xAutoReload is set to pdFALSE. */
( void * ) 0, /* The ID is not used, so can be set to anything. */
prvButtonLEDTimerCallback /* The callback function that switches the LED off. */
);