@@ -83,7 +83,7 @@ ConditionVariablePrepareToSleep(ConditionVariable *cv)
8383
8484/*--------------------------------------------------------------------------
8585 * 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
8787 * otherwise sleeps, like so:
8888 *
8989 * ConditionVariablePrepareToSleep(cv); [optional]
@@ -108,7 +108,7 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
108108 * return can be avoided by calling ConditionVariablePrepareToSleep(cv)
109109 * first. Whether it's worth doing that depends on whether you expect the
110110 * 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 ,
112112 * in which case preparing first allows you to skip a spurious test of the
113113 * caller's exit condition.
114114 */