Skip to content

Commit

Permalink
[Docs] prefer-default-export: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kkyaruek authored and ljharb committed Nov 25, 2021
1 parent e8d79b5 commit e156316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/prefer-default-export.md
Expand Up @@ -22,7 +22,7 @@ The following patterns are not warnings:
// There is a default export.
export const foo = 'foo';
const bar = 'bar';
export default 'bar';
export default bar;
```

```javascript
Expand Down

0 comments on commit e156316

Please sign in to comment.