diff options
| author | Greg Stark | 2016-06-03 14:13:36 +0000 |
|---|---|---|
| committer | Greg Stark | 2016-06-03 15:08:45 +0000 |
| commit | e1623c3959aac707732d7a6ad09adfb5751763b3 (patch) | |
| tree | 3f73cc1c228576ae41f7f2444abb3dc65250c740 /src/include | |
| parent | ee4af347ba89b8492d1f86b6456865e1de1d030f (diff) | |
Fix various common mispellings.
Mostly these are just comments but there are a few in documentation
and a handful in code and tests. Hopefully this doesn't cause too much
unnecessary pain for backpatching. I relented from some of the most
common like "thru" for that reason. The rest don't seem numerous
enough to cause problems.
Thanks to Kevin Lyda's tool https://pypi.python.org/pypi/misspellings
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/port/win32.h | 2 | ||||
| -rw-r--r-- | src/include/storage/freespace.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index d389e83a6cf..4453c903466 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -9,7 +9,7 @@ * Leave a higher value in place. When building with at least Visual * Studio 2015 the minimum requirement is Windows Vista (0x0600) to * get support for GetLocaleInfoEx() with locales. For everything else - * the minumum version is Windows XP (0x0501). + * the minimum version is Windows XP (0x0501). * Also for VS2015, add a define that stops compiler complaints about * using the old Winsock API. */ diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index 16c052b8bce..ce95ef3064d 100644 --- a/src/include/storage/freespace.h +++ b/src/include/storage/freespace.h @@ -33,8 +33,8 @@ extern void XLogRecordPageWithFreeSpace(RelFileNode rnode, BlockNumber heapBlk, extern void FreeSpaceMapTruncateRel(Relation rel, BlockNumber nblocks); extern void FreeSpaceMapVacuum(Relation rel); extern void UpdateFreeSpaceMap(Relation rel, - BlockNumber firtsBlkNum, - BlockNumber lastBlkNum, + BlockNumber startBlkNum, + BlockNumber endBlkNum, Size freespace); #endif /* FREESPACE_H_ */ |
