File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ ptrackCheckpoint(void)
390
390
/*
391
391
* We are writing ptrack map values to file, but we want to simply map it
392
392
* into the memory with mmap after a crash/restart. That way, we have to
393
- * write values taking into account all paddings/allignments .
393
+ * write values taking into account all paddings/alignments .
394
394
*
395
395
* Write both magic and varsion_num at once.
396
396
*/
@@ -447,7 +447,7 @@ ptrackCheckpoint(void)
447
447
* going to overflow. */
448
448
449
449
/*
450
- * We should not have any allignment issues here, since sizeof()
450
+ * We should not have any alignment issues here, since sizeof()
451
451
* takes into account all paddings for us.
452
452
*/
453
453
ptrack_write_chunk (ptrack_tmp_fd , & crc , (char * ) buf , writesz );
@@ -458,7 +458,7 @@ ptrackCheckpoint(void)
458
458
}
459
459
}
460
460
461
- /* Write if anythig left */
461
+ /* Write if anything left */
462
462
if ((i + 1 ) % PTRACK_BUF_SIZE != 0 )
463
463
{
464
464
size_t writesz = sizeof (pg_atomic_uint64 ) * j ;
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ _PG_fini(void)
137
137
138
138
/*
139
139
* Ptrack follow up for copydir() routine. It parses database OID
140
- * and tablespace OID from path string. We do not need to recoursively
140
+ * and tablespace OID from path string. We do not need to recursively
141
141
* walk subdirs here, copydir() will do it for us if needed.
142
142
*/
143
143
static void
You can’t perform that action at this time.
0 commit comments