From cacf4036b9016de99fb66792e7ef8da65eac0aa2 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sat, 10 Oct 2009 18:43:18 +0000 Subject: [PATCH] Correct type on comment. --- Source/include/task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/include/task.h b/Source/include/task.h index 7f4540eaf..b3b31d063 100644 --- a/Source/include/task.h +++ b/Source/include/task.h @@ -254,7 +254,7 @@ typedef struct xTASK_PARAMTERS // Create the task, storing the handle. Note that the passed parameter ucParameterToPass // must exist for the lifetime of the task, so in this case is declared static. If it was just an // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time - // the new time attempts to access it. + // the new task attempts to access it. xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle ); // Use the handle to delete the task.