From: Kevin Grittner <kgrittn@postgresql.org>
Date: Sat, 9 Apr 2016 14:07:42 +0000 (-0500)
Subject: Fix typo in C comment.
X-Git-Tag: REL9_6_BETA1~215
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=381200be4b565292eba6f62200248cb775f06940;p=postgresql

Fix typo in C comment.
---

diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h
index bdf7b0d3c5..63053d469a 100644
--- a/src/include/storage/bufpage.h
+++ b/src/include/storage/bufpage.h
@@ -301,10 +301,10 @@ typedef PageHeaderData *PageHeader;
  * Using assertions, validate that the page special pointer is OK.
  *
  * This is intended to catch use of the pointer before page initialization.
- * It is implemented as a function do to the limitations of the MSVC compiler,
- * which choked on doing all these tests within another macro.  We return true
- * so that MacroAssert() can be used while still getting the specifics from
- * the macro failure within this function.
+ * It is implemented as a function due to the limitations of the MSVC
+ * compiler, which choked on doing all these tests within another macro.  We
+ * return true so that MacroAssert() can be used while still getting the
+ * specifics from the macro failure within this function.
  */
 static inline bool
 PageValidateSpecialPointer(Page page)