]> granicus.if.org Git - postgresql/commitdiff
Fix typos in comments.
authorFujii Masao <fujii@postgresql.org>
Mon, 16 Jan 2017 09:55:34 +0000 (18:55 +0900)
committerFujii Masao <fujii@postgresql.org>
Mon, 16 Jan 2017 09:55:34 +0000 (18:55 +0900)
Masahiko Sawada

src/backend/storage/lmgr/condition_variable.c

index e2cfc58221cab8fe3591c824bcb74cf14130c6ea..67fe177a7ddd6fc64c8d08849a02304470211904 100644 (file)
@@ -83,7 +83,7 @@ ConditionVariablePrepareToSleep(ConditionVariable *cv)
 
 /*--------------------------------------------------------------------------
  * Wait for the given condition variable to be signaled.  This should be
- * called in a predicate loop that tests for a specfic exit condition and
+ * called in a predicate loop that tests for a specific exit condition and
  * otherwise sleeps, like so:
  *
  *   ConditionVariablePrepareToSleep(cv); [optional]
@@ -108,7 +108,7 @@ ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
         * return can be avoided by calling ConditionVariablePrepareToSleep(cv)
         * first.  Whether it's worth doing that depends on whether you expect the
         * condition to be met initially, in which case skipping the prepare
-        * allows you to skip manipulation of the wait list, or not met intiailly,
+        * allows you to skip manipulation of the wait list, or not met initially,
         * in which case preparing first allows you to skip a spurious test of the
         * caller's exit condition.
         */