diff --git a/src/ProcessScheduler/Config.h b/src/ProcessScheduler/Config.h index 689c62a..18d172b 100755 --- a/src/ProcessScheduler/Config.h +++ b/src/ProcessScheduler/Config.h @@ -23,7 +23,7 @@ typedef enum ProcPriority { - // Feel free to add custom prority levels in here + // Feel free to add custom priority levels in here ////////////// BEGIN ////////////////// HIGH_PRIORITY = 0, MEDIUM_PRIORITY, diff --git a/src/ProcessScheduler/Process.h b/src/ProcessScheduler/Process.h index 01e08e2..1d7869f 100755 --- a/src/ProcessScheduler/Process.h +++ b/src/ProcessScheduler/Process.h @@ -12,7 +12,7 @@ class Process public: /* * @param manager: The scheduler overseeing this Process - * @param priority: The prority of this Process defined in config.h + * @param priority: The priority of this Process defined in config.h * @param period: The period this process should be serviced at (SERVICE_CONSTANTLY = As often as possible) * @param iterations: Number of iterations this process should be serviced before being disabled (RUNTIME_FOREVER = infinite) * @param overSchedThresh: The periods behind this process can get, before a WARNING_PROC_OVERSCHEDULED is triggered