From 97a804cb2bba49d5ff04795cf500722977e5af9a Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 18 Feb 2018 17:16:11 -0500 Subject: [PATCH] Message style fix --- src/backend/commands/dbcommands.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index d2020d07cf..d1718f04ee 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -857,8 +857,8 @@ dropdb(const char *dbname, bool missing_ok) (errcode(ERRCODE_OBJECT_IN_USE), errmsg("database \"%s\" is used by an active logical replication slot", dbname), - errdetail_plural("There is %d active slot", - "There are %d active slots", + errdetail_plural("There is %d active slot.", + "There are %d active slots.", nslots_active, nslots_active))); }