Skip to content

Commit 1d39552

Browse files
committed
Improve some GUC description strings
It is not our usual style to use "we" in messages. Also, remove some noise words. Backpatch to 15. Noted by Kyotaro Horiguchi. Discussion: https://postgr.es/m/20220914.111507.13049297635620898.horikyota.ntt@gmail.com
1 parent f9a56e7 commit 1d39552

File tree

1 file changed

+2
-2
lines changed
  • src/backend/utils/misc

1 file changed

+2
-2
lines changed

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2838,7 +2838,7 @@ static struct config_int ConfigureNamesInt[] =
28382838
{
28392839
{"wal_decode_buffer_size", PGC_POSTMASTER, WAL_RECOVERY,
28402840
gettext_noop("Buffer size for reading ahead in the WAL during recovery."),
2841-
gettext_noop("This controls the maximum distance we can read ahead in the WAL to prefetch referenced data blocks."),
2841+
gettext_noop("Maximum distance to read ahead in the WAL to prefetch referenced data blocks."),
28422842
GUC_UNIT_BYTE
28432843
},
28442844
&wal_decode_buffer_size,
@@ -3495,7 +3495,7 @@ static struct config_int ConfigureNamesInt[] =
34953495
{
34963496
{"tcp_keepalives_count", PGC_USERSET, CONN_AUTH_SETTINGS,
34973497
gettext_noop("Maximum number of TCP keepalive retransmits."),
3498-
gettext_noop("This controls the number of consecutive keepalive retransmits that can be "
3498+
gettext_noop("Number of consecutive keepalive retransmits that can be "
34993499
"lost before a connection is considered dead. A value of 0 uses the "
35003500
"system default."),
35013501
},

0 commit comments

Comments
 (0)