1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

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.
This commit is contained in:
Tom Lane
2016-12-23 11:53:35 -05:00
parent 3e6639a465
commit ff33d1456e
4 changed files with 12 additions and 12 deletions

View File

@ -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().
*/