diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index f5904748553..292cff5df93 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -279,7 +279,7 @@ HandleSlashCmds(PsqlScanState scan_state, * Subroutine to actually try to execute a backslash command. * * The typical "success" result code is PSQL_CMD_SKIP_LINE, although some - * commands return something else. Failure results are PSQL_CMD_ERROR, + * commands return something else. Failure result code is PSQL_CMD_ERROR, * unless PSQL_CMD_UNKNOWN is more appropriate. */ static backslashResult @@ -683,7 +683,7 @@ exec_command_copyright(PsqlScanState scan_state, bool active_branch) } /* - * \crosstabview -- execute a query and display results in crosstab + * \crosstabview -- execute a query and display result in crosstab */ static backslashResult exec_command_crosstabview(PsqlScanState scan_state, bool active_branch) @@ -5084,7 +5084,7 @@ do_watch(PQExpBuffer query_buf, double sleep) timebuf, sleep); myopt.title = title; - /* Run the query and print out the results */ + /* Run the query and print out the result */ res = PSQLexecWatch(query_buf->data, &myopt, pagerpipe); /* |