Skip to content

Commit

Permalink
docs(eslint-plugin): typo in space-before-function-paren docs (#1297)
Browse files Browse the repository at this point in the history
  • Loading branch information
BO41 authored and bradzacher committed Dec 2, 2019
1 parent 5adb8a2 commit 5362561
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -4,15 +4,15 @@ When formatting a function, whitespace is allowed between the function name or `

<!-- prettier-ignore -->
```ts
function withoutSpace (x) {
function withoutSpace(x) {
// ...
}

function withSpace (x) {
// ...
}

var anonymousWithoutSpace = function () {};
var anonymousWithoutSpace = function() {};

var anonymousWithSpace = function () {};
```
Expand Down

0 comments on commit 5362561

Please sign in to comment.