]> git.sur5r.net Git - freertos/commitdiff
Correct type on comment.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 10 Oct 2009 18:43:18 +0000 (18:43 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 10 Oct 2009 18:43:18 +0000 (18:43 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@913 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/include/task.h

index 7f4540eaf730a2209bc4dbca02052ffd46dd8ff4..b3b31d063868e0cec6223aca26dd502e6bed2426 100644 (file)
@@ -254,7 +254,7 @@ typedef struct xTASK_PARAMTERS
         // Create the task, storing the handle.  Note that the passed parameter ucParameterToPass\r
         // must exist for the lifetime of the task, so in this case is declared static.  If it was just an\r
         // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time\r
-        // the new time attempts to access it.\r
+        // the new task attempts to access it.\r
         xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );\r
 \r
         // Use the handle to delete the task.\r