diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-01-25 09:40:04 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-01-25 09:40:04 +0900 |
commit | 410aa248e5a883fde4832999cc9b23c7ace0f2ff (patch) | |
tree | e3dba4bbe6b5e60687939a1b04cfaac9a129adb9 /src/backend/commands/indexcmds.c | |
parent | c817a072aae8441a11d6a0336953ecd69dc548ba (diff) | |
download | postgresql-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/indexcmds.c')
-rw-r--r-- | src/backend/commands/indexcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index e5cf1bde13f..42aacc8f0a2 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -2219,7 +2219,7 @@ makeObjectName(const char *name1, const char *name2, const char *label) Assert(availchars > 0); /* else caller chose a bad label */ /* - * If we must truncate, preferentially truncate the longer name. This + * If we must truncate, preferentially truncate the longer name. This * logic could be expressed without a loop, but it's simple and obvious as * a loop. */ |