From 9fedd5130dd69401f74338d22ea6ea4472f15e07 Mon Sep 17 00:00:00 2001 From: Kevin Partington Date: Tue, 10 Oct 2017 15:41:08 -0500 Subject: [PATCH] Chore: Add missing space in blog post template (#9407) For non-patch releases, template used to generate this string: > This release adds some new features andfixes several bugs found in the previous release. Now it generates this string: > This release adds some new features and fixes several bugs found in the previous release. --- templates/blogpost.md.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/blogpost.md.ejs b/templates/blogpost.md.ejs index 0f0a2f75271..05261a58fb1 100644 --- a/templates/blogpost.md.ejs +++ b/templates/blogpost.md.ejs @@ -7,7 +7,7 @@ tags: --- # ESLint v<%= version %> released -We just pushed ESLint v<%- version %>, which is a <%- type %> release upgrade of ESLint. This release <% if (type !== "patch") { %>adds some new features and<% } %>fixes several bugs found in the previous release. <% if (type === "major") { %>This release also has some breaking changes, so please read the following closely. <% } %> +We just pushed ESLint v<%- version %>, which is a <%- type %> release upgrade of ESLint. This release <% if (type !== "patch") { %>adds some new features and <% } %>fixes several bugs found in the previous release. <% if (type === "major") { %>This release also has some breaking changes, so please read the following closely. <% } %> <% const RULE_REGEX = new RegExp(`\`?\\b(${ruleList.join("|")})\\b\`?`, "g");