Skip to content

Commit 414e755

Browse files
committed
C comment: fix typos with unnecessary apostrophes
Reported-by: Vinayak Pokale Discussion: https://postgr.es/m/CAEySZvh7gPTOqMhuKOBXEt=qF_1BCvFQB4MAJ4yaTPJHxgX_zw@mail.gmail.com Author: Vinayak Pokale Backpatch-through: master
1 parent 1db5300 commit 414e755

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/commands/sequence.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ AlterSequence(ParseState *pstate, AlterSeqStmt *stmt)
474474

475475
seqform = (Form_pg_sequence) GETSTRUCT(seqtuple);
476476

477-
/* lock page's buffer and read tuple into new sequence structure */
477+
/* lock page buffer and read tuple into new sequence structure */
478478
(void) read_seq_tuple(seqrel, &buf, &datatuple);
479479

480480
/* copy the existing sequence data tuple, so it can be modified locally */
@@ -678,7 +678,7 @@ nextval_internal(Oid relid, bool check_permissions)
678678
cycle = pgsform->seqcycle;
679679
ReleaseSysCache(pgstuple);
680680

681-
/* lock page' buffer and read tuple */
681+
/* lock page buffer and read tuple */
682682
seq = read_seq_tuple(seqrel, &buf, &seqdatatuple);
683683
page = BufferGetPage(buf);
684684

@@ -974,7 +974,7 @@ do_setval(Oid relid, int64 next, bool iscalled)
974974
*/
975975
PreventCommandIfParallelMode("setval()");
976976

977-
/* lock page' buffer and read tuple */
977+
/* lock page buffer and read tuple */
978978
seq = read_seq_tuple(seqrel, &buf, &seqdatatuple);
979979

980980
if ((next < minv) || (next > maxv))

0 commit comments

Comments
 (0)