Skip to content

Commit

Permalink
Build: Fix typo in blog post template (fixes #11614)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed May 29, 2019
1 parent d662b17 commit 11ce132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/blogpost.md.ejs
Expand Up @@ -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");
Expand Down

0 comments on commit 11ce132

Please sign in to comment.