From: richardbarry Date: Sat, 10 Oct 2009 18:43:18 +0000 (+0000) Subject: Correct type on comment. X-Git-Tag: V6.0.0~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3f2430836a0e9302d04b74e6a940ee0af9064451;p=freertos Correct type on comment. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@913 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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.