diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-02-10 12:03:35 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-02-10 12:12:52 +0100 |
commit | b9a3139397ff284cebc92fb008862ab902261883 (patch) | |
tree | 4c2ab73bf1f404c98a0077fee948cd9c7f89932b /src/bin/psql/variables.c | |
parent | f5744f1d1e3588b4c782bcad44e8da9c056eb67f (diff) | |
download | postgresql-b9a3139397ff284cebc92fb008862ab902261883.tar.gz postgresql-b9a3139397ff284cebc92fb008862ab902261883.zip |
psql: Rename results to result when only a single one is meant
This makes the naming more consistent with the libpq API and the rest
of the code, and makes actually supporting multiple result sets in the
future less confusing.
Discussion: https://www.postgresql.org/message-id/flat/db72fb98-9b43-d776-7247-6ed38f28e7c6%40enterprisedb.com
Diffstat (limited to 'src/bin/psql/variables.c')
-rw-r--r-- | src/bin/psql/variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c index b141aac8eb3..47c58d2be9d 100644 --- a/src/bin/psql/variables.c +++ b/src/bin/psql/variables.c @@ -45,7 +45,7 @@ valid_variable_name(const char *name) * that serves as list header. * * The list entries are kept in name order (according to strcmp). This - * is mainly to make the results of PrintVariables() more pleasing. + * is mainly to make the output of PrintVariables() more pleasing. */ VariableSpace CreateVariableSpace(void) |