Skip to content

Commit e8c447c

Browse files
committed
minor comment typos
1 parent f19d752 commit e8c447c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ void vPortEndScheduler( void )
613613
/* It is unlikely that the ATmega port will get stopped. If required simply
614614
* disable the tick interrupt here. */
615615

616-
wdt_disable(); /* disable Watchdog Timer */
616+
wdt_disable(); /* disable Watchdog Timer */
617617
}
618618
/*-----------------------------------------------------------*/
619619

src/task.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ typedef enum
256256
* <pre>
257257
* BaseType_t xTaskCreate(
258258
* TaskFunction_t pxTaskCode,
259-
* const char *pcName,
260-
* configSTACK_DEPTH_TYPE usStackDepth,
259+
* const char * const pcName,
260+
* const configSTACK_DEPTH_TYPE usStackDepth,
261261
* void *pvParameters,
262262
* UBaseType_t uxPriority,
263263
* TaskHandle_t *pxCreatedTask
@@ -358,8 +358,8 @@ typedef enum
358358
* task. h
359359
* <pre>
360360
* TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode,
361-
* const char *pcName,
362-
* uint32_t ulStackDepth,
361+
* const char * const pcName,
362+
* const configSTACK_DEPTH_TYPE ulStackDepth,
363363
* void *pvParameters,
364364
* UBaseType_t uxPriority,
365365
* StackType_t *puxStackBuffer,

0 commit comments

Comments
 (0)