aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIncrementalSort.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-11-02 15:14:41 +0900
committerMichael Paquier <michael@paquier.xyz>2020-11-02 15:14:41 +0900
commit8a15e735be00f156a7227741c0ce88702e6de099 (patch)
treecbf4c769323851d32da23f4d58895be79dcf2787 /src/backend/executor/nodeIncrementalSort.c
parent644f0d7cc9c2cb270746f2024c706554e0fbec82 (diff)
downloadpostgresql-8a15e735be00f156a7227741c0ce88702e6de099.tar.gz
postgresql-8a15e735be00f156a7227741c0ce88702e6de099.zip
Fix some grammar and typos in comments and docs
The documentation fixes are backpatched down to where they apply. Author: Justin Pryzby Discussion: https://postgr.es/m/20201031020801.GD3080@telsasoft.com Backpatch-through: 9.6
Diffstat (limited to 'src/backend/executor/nodeIncrementalSort.c')
-rw-r--r--src/backend/executor/nodeIncrementalSort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/nodeIncrementalSort.c b/src/backend/executor/nodeIncrementalSort.c
index 6c0d24ee25a..eb6cc19a60c 100644
--- a/src/backend/executor/nodeIncrementalSort.c
+++ b/src/backend/executor/nodeIncrementalSort.c
@@ -1097,7 +1097,7 @@ ExecEndIncrementalSort(IncrementalSortState *node)
ExecClearTuple(node->ss.ss_ScanTupleSlot);
/* must drop pointer to sort result tuple */
ExecClearTuple(node->ss.ps.ps_ResultTupleSlot);
- /* must drop stanalone tuple slots from outer node */
+ /* must drop standalone tuple slots from outer node */
ExecDropSingleTupleTableSlot(node->group_pivot);
ExecDropSingleTupleTableSlot(node->transfer_tuple);