aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/cluster.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2022-01-25 09:40:04 +0900
committerMichael Paquier <michael@paquier.xyz>2022-01-25 09:40:04 +0900
commit410aa248e5a883fde4832999cc9b23c7ace0f2ff (patch)
treee3dba4bbe6b5e60687939a1b04cfaac9a129adb9 /src/backend/commands/cluster.c
parentc817a072aae8441a11d6a0336953ecd69dc548ba (diff)
downloadpostgresql-410aa248e5a883fde4832999cc9b23c7ace0f2ff.tar.gz
postgresql-410aa248e5a883fde4832999cc9b23c7ace0f2ff.zip
Fix various typos, grammar and code style in comments and docs
This fixes a set of issues that have accumulated over the past months (or years) in various code areas. Most fixes are related to some recent additions, as of the development of v15. Author: Justin Pryzby Discussion: https://postgr.es/m/20220124030001.GQ23027@telsasoft.com
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r--src/backend/commands/cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c
index 61853e6dec4..2e8efe4f8fc 100644
--- a/src/backend/commands/cluster.c
+++ b/src/backend/commands/cluster.c
@@ -906,7 +906,7 @@ copy_table_data(Oid OIDNewHeap, Oid OIDOldHeap, Oid OIDOldIndex, bool verbose,
RelationGetRelationName(OldHeap))));
/*
- * Hand of the actual copying to AM specific function, the generic code
+ * Hand off the actual copying to AM specific function, the generic code
* cannot know how to deal with visibility across AMs. Note that this
* routine is allowed to set FreezeXid / MultiXactCutoff to different
* values (e.g. because the AM doesn't use freezing).