summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2018-02-18 22:16:11 +0000
committerPeter Eisentraut2018-02-18 22:16:11 +0000
commit97a804cb2bba49d5ff04795cf500722977e5af9a (patch)
treebfb9f45926b13a1ebb1507ec02a491b0c90c9c79
parent1a1adb215c69bbf64fd8e01cc1706812dc8ba15b (diff)
Message style fix
-rw-r--r--src/backend/commands/dbcommands.c4
1 files 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)));
}