@@ -83,7 +83,7 @@ ConditionVariablePrepareToSleep(ConditionVariable *cv)
83
83
84
84
/*--------------------------------------------------------------------------
85
85
* Wait for the given condition variable to be signaled. This should be
86
- * called in a predicate loop that tests for aspecfic exit condition and
86
+ * called in a predicate loop that tests for aspecific exit condition and
87
87
* otherwise sleeps, like so:
88
88
*
89
89
* ConditionVariablePrepareToSleep(cv); [optional]
@@ -108,7 +108,7 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
108
108
* return can be avoided by calling ConditionVariablePrepareToSleep(cv)
109
109
* first. Whether it's worth doing that depends on whether you expect the
110
110
* condition to be met initially, in which case skipping the prepare
111
- * allows you to skip manipulation of the wait list, or not metintiailly ,
111
+ * allows you to skip manipulation of the wait list, or not metinitially ,
112
112
* in which case preparing first allows you to skip a spurious test of the
113
113
* caller's exit condition.
114
114
*/