summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-11-05 20:56:25 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-11-06 07:16:30 +0100
commit05b9edcb7140101e91f7cf17c0c7d463bb41c401 (patch)
tree6d2bd04194c42f8365d8a90315c1c4f004b72dbd
parenteaa159632d034a59ede1695f4b86098b1a372b48 (diff)
Update code comment
Should have been part of commit a13833c35f9.
-rw-r--r--src/backend/utils/misc/guc_tables.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index 00c8376cf4d..0209b2067a2 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -4,10 +4,10 @@
*
* Static tables for the Grand Unified Configuration scheme.
*
- * Many of these tables are const. However, ConfigureNamesBool[]
- * and so on are not, because the structs in those arrays are actually
- * the live per-variable state data that guc.c manipulates. While many of
- * their fields are intended to be constant, some fields change at runtime.
+ * Many of these tables are const. However, ConfigureNames[] is not, because
+ * the structs in it are actually the live per-variable state data that guc.c
+ * manipulates. While many of their fields are intended to be constant, some
+ * fields change at runtime.
*
*
* Copyright (c) 2000-2025, PostgreSQL Global Development Group