diff options
author | N <71219152+PokeCodec@users.noreply.github.com> | 2021-01-17 12:46:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 12:46:08 -0500 |
commit | ad6ab09e30a9c0d8efdf83608966e125046d2dcd (patch) | |
tree | 20af63d369f304accf5bbc608c294e4d470a2fe4 /src | |
parent | 3b80f3caf1567659830b8685f550dc4ed27da893 (diff) |
Update comment
Diffstat (limited to 'src')
-rw-r--r-- | src/task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task.c b/src/task.c index 20ce56c38..f3b696545 100644 --- a/src/task.c +++ b/src/task.c @@ -171,7 +171,7 @@ u8 FindTaskIdByFunc(TaskFunc func) if (gTasks[i].isActive == TRUE && gTasks[i].func == func) return (u8)i; - return TAIL_SENTINEL; // No task found. + return TAIL_SENTINEL; // No task was found. } u8 GetTaskCount(void) |