From 2214a207ee8170afce79478df3b37114a94d976e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 23 Dec 2025 20:35:51 -0500 Subject: [PATCH] C comment: fix psql "pstdout" duplicate to "pstdin" Reported-by: Ignat Remizov Author: Ignat Remizov Discussion: https://postgr.es/m/CAKiC8XbbR2_YqmbxmYWuEA+MmWP3c=obV5xS1Hye3ZHS-Ss_DA@mail.gmail.com --- src/bin/psql/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index 92c955b637..04553c3a33 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -33,7 +33,7 @@ * \copy ( query stmt ) to filename [options] * * where 'filename' can be one of the following: - * '' | PROGRAM '' | stdin | stdout | pstdout | pstdout + * '' | PROGRAM '' | stdin | stdout | pstdin | pstdout * and 'query' can be one of the following: * SELECT | UPDATE | INSERT | DELETE *