aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/SchedulerOverview.txt
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-04-19 14:29:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-04-19 14:29:57 +0000
commit619b0b7b6b44e4422ea9aeb0cde41343bb5dda70 (patch)
tree86746a10853d261e18a4ad37b4e970a4917e89a0 /LUFA/SchedulerOverview.txt
parent663f449c10b9a77a429aaa81066ce2b43ca6dc39 (diff)
downloadlufa-619b0b7b6b44e4422ea9aeb0cde41343bb5dda70.tar.gz
lufa-619b0b7b6b44e4422ea9aeb0cde41343bb5dda70.tar.bz2
lufa-619b0b7b6b44e4422ea9aeb0cde41343bb5dda70.zip
Spell checked non-source documentation pages.
Diffstat (limited to 'LUFA/SchedulerOverview.txt')
-rw-r--r--LUFA/SchedulerOverview.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/SchedulerOverview.txt b/LUFA/SchedulerOverview.txt
index 0a4f49282..5c031feac 100644
--- a/LUFA/SchedulerOverview.txt
+++ b/LUFA/SchedulerOverview.txt
@@ -15,7 +15,7 @@
* hogs the processor, preventing another from running before some sort of timeout is exceeded). Unlike normal RTOS
* tasks, each LUFA scheduler task is a regular function, and thus must be designed to be called, and designed to
* return to the calling scheduler function repeatedly. Data which must be preserved between task calls should be
- * declared as global or (prefferably) as a static local variable inside the task.
+ * declared as global or (preferably) as a static local variable inside the task.
*
* The scheduler consists of a task list, listing all the tasks which can be executed by the scheduler. Once started,
* each task is then called one after another, unless the task is stopped by another running task or interrupt.