From 73ceecbde3134108aa5e14a8bd0465b035c241d4 Mon Sep 17 00:00:00 2001 From: Ibrar Ahmed Date: Mon, 17 Aug 2020 15:07:15 +0000 Subject: [PATCH] Issue - (#43): Minor typos. PG-123 --- guc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guc.c b/guc.c index 00dda50..71c8b8b 100644 --- a/guc.c +++ b/guc.c @@ -39,7 +39,7 @@ init_guc(void) }; conf[i++] = (GucVariable) { .guc_name = "pg_stat_monitor.pgsm_enable", - .guc_desc = "Enable/Disable stistics collector.", + .guc_desc = "Enable/Disable statistics collector.", .guc_default = 1, .guc_min = 0, .guc_max = 0, @@ -151,7 +151,7 @@ init_guc(void) NULL); DefineCustomBoolVariable("pg_stat_monitor.pgsm_enable", - "Enable/Disable the statis collector.", + "Enable/Disable statistics collector.", NULL, (bool*)&PGSM_ENABLED, true,