Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 818861e

Browse files
committed
Fix some typos and grammar issues from commit 87985cc
Reported-by: Alexander Lakhin
1 parent 677a45c commit 818861e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/backend/access/heap/heapam.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3412,7 +3412,7 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
34123412

34133413
/*
34143414
* If we're asked to lock the updated tuple, we just fetch the
3415-
* existing tuple. That let's the caller save some resouces on
3415+
* existing tuple. That lets the caller save some resources on
34163416
* placing the lock.
34173417
*/
34183418
if (result == TM_Updated &&

src/backend/commands/trigger.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2784,8 +2784,8 @@ ExecARDeleteTriggers(EState *estate,
27842784
(transition_capture && transition_capture->tcs_delete_old_table))
27852785
{
27862786
/*
2787-
* Put the FDW old tuple to the slot. Otherwise, caller is expected
2788-
* to have old tuple alredy fetched to the slot.
2787+
* Put the FDW old tuple to the slot. Otherwise, the caller is
2788+
* expected to have an old tuple already fetched to the slot.
27892789
*/
27902790
if (fdw_trigtuple != NULL)
27912791
ExecForceStoreHeapTuple(fdw_trigtuple, slot, false);

0 commit comments

Comments
 (0)