]> granicus.if.org Git - postgresql/commitdiff
Fix typo in C comment.
authorKevin Grittner <kgrittn@postgresql.org>
Sat, 9 Apr 2016 14:07:42 +0000 (09:07 -0500)
committerKevin Grittner <kgrittn@postgresql.org>
Sat, 9 Apr 2016 14:07:42 +0000 (09:07 -0500)
src/include/storage/bufpage.h

index bdf7b0d3c582c20250edc58ca095417d5ed7845a..63053d469a67f73b050e7d9c4cf40c273be36092 100644 (file)
@@ -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)