From 11ce132fe430852e60b9bdef5208b4bac22c522d Mon Sep 17 00:00:00 2001 From: Kai Cataldo Date: Tue, 28 May 2019 22:53:42 -0400 Subject: [PATCH] Build: Fix typo in blog post template (fixes #11614) --- 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 80235073a3f..bbaa09fd679 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");