Skip to content

Commit 3d4e841

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 a932824 commit 3d4e841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/misc/guc_tables.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2591,7 +2591,7 @@ struct config_int ConfigureNamesInt[] =
25912591
{
25922592
{"wal_decode_buffer_size", PGC_POSTMASTER, WAL_RECOVERY,
25932593
gettext_noop("Buffer size for reading ahead in the WAL during recovery."),
2594-
gettext_noop("This controls the maximum distance we can read ahead in the WAL to prefetch referenced data blocks."),
2594+
gettext_noop("Maximum distance to read ahead in the WAL to prefetch referenced data blocks."),
25952595
GUC_UNIT_BYTE
25962596
},
25972597
&wal_decode_buffer_size,
@@ -3248,7 +3248,7 @@ struct config_int ConfigureNamesInt[] =
32483248
{
32493249
{"tcp_keepalives_count", PGC_USERSET, CONN_AUTH_TCP,
32503250
gettext_noop("Maximum number of TCP keepalive retransmits."),
3251-
gettext_noop("This controls the number of consecutive keepalive retransmits that can be "
3251+
gettext_noop("Number of consecutive keepalive retransmits that can be "
32523252
"lost before a connection is considered dead. A value of 0 uses the "
32533253
"system default."),
32543254
},

0 commit comments

Comments
 (0)