Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix: fix message of function-paren-newline (#12136)
  • Loading branch information
g-plane authored and kaicataldo committed Aug 26, 2019
1 parent 77f8ed1 commit a81d263
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rules/function-paren-newline.js
Expand Up @@ -51,8 +51,8 @@ module.exports = {
expectedBefore: "Expected newline before ')'.",
expectedAfter: "Expected newline after '('.",
expectedBetween: "Expected newline between arguments/params.",
unexpectedBefore: "Unexpected newline before '('.",
unexpectedAfter: "Unexpected newline after ')'."
unexpectedBefore: "Unexpected newline before ')'.",
unexpectedAfter: "Unexpected newline after '('."
}
},

Expand Down

0 comments on commit a81d263

Please sign in to comment.