]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Update code comment
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 5 Nov 2025 19:56:25 +0000 (20:56 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Thu, 6 Nov 2025 06:16:30 +0000 (07:16 +0100)
Should have been part of commit a13833c35f9.

src/backend/utils/misc/guc_tables.c

index 00c8376cf4dede780f72acaa635f3b97b586ba43..0209b2067a2284f21b95a6927a5e6758fa2145db 100644 (file)
@@ -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