From 94050d37cda1adec003d36b7dd04e177d8508a0f Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 30 Sep 2021 18:22:25 +0200 Subject: [PATCH] Fixed comma dangle refs https://linear.app/tryghost/issue/CORE-35/refactor-route-and-redirect-settings - Stray comma was introduced in previous commit --- core/server/services/route-settings/yaml-parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/server/services/route-settings/yaml-parser.js b/core/server/services/route-settings/yaml-parser.js index 52c3274e6a..70908fa618 100644 --- a/core/server/services/route-settings/yaml-parser.js +++ b/core/server/services/route-settings/yaml-parser.js @@ -5,7 +5,7 @@ const errors = require('@tryghost/errors'); const messages = { parsingError: { message: 'Could not parse provided YAML file: {context}.', - help: 'Check provided file for typos and fix the named issues.', + help: 'Check provided file for typos and fix the named issues.' }, invalidYamlFormat: { message: 'YAML input cannot be a plain string. Check the format of your YAML file.',