aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execParallel.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-12-23 11:53:35 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2016-12-23 11:53:35 -0500
commitff33d1456ea098e160cbbc74b332656c06abc2ab (patch)
tree06cb35ae1999dc48edb3f412972b93a9b4bf9815 /src/backend/executor/execParallel.c
parent3e6639a465a5702d0aa98fc756b5ab8c7f97cde8 (diff)
downloadpostgresql-ff33d1456ea098e160cbbc74b332656c06abc2ab.tar.gz
postgresql-ff33d1456ea098e160cbbc74b332656c06abc2ab.zip
Spellcheck: s/descendent/descendant/g
I got a little annoyed by reading documentation paragraphs containing both spellings within a few lines of each other. My dictionary says "descendant" is the preferred spelling, and it's certainly the majority usage in our tree, so standardize on that. For one usage in parallel.sgml, I thought it better to rewrite to avoid the term altogether.
Diffstat (limited to 'src/backend/executor/execParallel.c')
-rw-r--r--src/backend/executor/execParallel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execParallel.c b/src/backend/executor/execParallel.c
index 8a6f844e352..cc42946f9cf 100644
--- a/src/backend/executor/execParallel.c
+++ b/src/backend/executor/execParallel.c
@@ -518,7 +518,7 @@ ExecInitParallelPlan(PlanState *planstate, EState *estate, int nworkers)
}
/*
- * Copy instrumentation information about this node and its descendents from
+ * Copy instrumentation information about this node and its descendants from
* dynamic shared memory.
*/
static bool
@@ -666,7 +666,7 @@ ExecParallelGetQueryDesc(shm_toc *toc, DestReceiver *receiver,
}
/*
- * Copy instrumentation information from this node and its descendents into
+ * Copy instrumentation information from this node and its descendants into
* dynamic shared memory, so that the parallel leader can retrieve it.
*/
static bool
@@ -706,7 +706,7 @@ ExecParallelReportInstrumentation(PlanState *planstate,
}
/*
- * Initialize the PlanState and its descendents with the information
+ * Initialize the PlanState and its descendants with the information
* retrieved from shared memory. This has to be done once the PlanState
* is allocated and initialized by executor; that is, after ExecutorStart().
*/