diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-09-27 14:21:28 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-09-27 14:21:28 +0900 |
commit | e767ddcd354b51fc4c12d6b02e268861bd871fbc (patch) | |
tree | 1a0be8e35ff2bf23da6979377688d7e5eda3f9d4 /src/backend/commands/statscmds.c | |
parent | 895267a3266484440c0b2f42f613bcff28844cc1 (diff) | |
download | postgresql-e767ddcd354b51fc4c12d6b02e268861bd871fbc.tar.gz postgresql-e767ddcd354b51fc4c12d6b02e268861bd871fbc.zip |
Fix typos and grammar in code comments
Several mistakes have piled in the code comments over the time,
including incorrect grammar, function names and simple typos. This
commit takes care of a portion of these.
No backpatch is done as this is only cosmetic.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20210924215827.GS831@telsasoft.com
Diffstat (limited to 'src/backend/commands/statscmds.c')
-rw-r--r-- | src/backend/commands/statscmds.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/commands/statscmds.c b/src/backend/commands/statscmds.c index afe6744e237..9938b65083f 100644 --- a/src/backend/commands/statscmds.c +++ b/src/backend/commands/statscmds.c @@ -213,14 +213,14 @@ CreateStatistics(CreateStatsStmt *stmt) * Convert the expression list to a simple array of attnums, but also keep * a list of more complex expressions. While at it, enforce some * constraints - we don't allow extended statistics on system attributes, - * and we require the data type to have less-than operator. + * and we require the data type to have a less-than operator. * - * There are many ways how to "mask" a simple attribute refenrece as an + * There are many ways to "mask" a simple attribute reference as an * expression, for example "(a+0)" etc. We can't possibly detect all of - * them, but we handle at least the simple case with attribute in parens. - * There'll always be a way around this, if the user is determined (like - * the "(a+0)" example), but this makes it somewhat consistent with how - * indexes treat attributes/expressions. + * them, but we handle at least the simple case with the attribute in + * parens. There'll always be a way around this, if the user is determined + * (like the "(a+0)" example), but this makes it somewhat consistent with + * how indexes treat attributes/expressions. */ foreach(cell, stmt->exprs) { |