Skip to content

Commit 1d86b97

Browse files
authored
Fix description of vTaskDelay (#363)
1 parent 4633870 commit 1d86b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION;
757757
* period of 100 ticks will cause the task to unblock 100 ticks after
758758
* vTaskDelay() is called. vTaskDelay() does not therefore provide a good method
759759
* of controlling the frequency of a periodic task as the path taken through the
760-
* code, as well as other task and interrupt activity, will effect the frequency
760+
* code, as well as other task and interrupt activity, will affect the frequency
761761
* at which vTaskDelay() gets called and therefore the time at which the task
762762
* next executes. See xTaskDelayUntil() for an alternative API function designed
763763
* to facilitate fixed frequency execution. It does this by specifying an

0 commit comments

Comments
 (0)