From 54646e6b73dbb1e2b7b73c99f23de083259760d7 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sat, 18 Jan 2020 17:39:54 +0100 Subject: [PATCH] Add space to BlacklistedError phrase list --- src/lib/errors/BlacklistedError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/errors/BlacklistedError.ts b/src/lib/errors/BlacklistedError.ts index 288af38..a4a76c2 100644 --- a/src/lib/errors/BlacklistedError.ts +++ b/src/lib/errors/BlacklistedError.ts @@ -5,6 +5,6 @@ import {BaseError} from "./BaseError"; */ export class BlacklistedError extends BaseError { constructor(public phrases: string[], field: string = "input") { - super(`The ${field} contains the blacklisted words: ${phrases.join(",")}`); + super(`The ${field} contains the blacklisted words: ${phrases.join(", ")}`); } }