Skip to content

Commit 1e6e1a0

Browse files
committed
Appease linter yet again
1 parent 429f5fd commit 1e6e1a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/no-component-lifecycle-hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default Component.extend({
5151
didUpdateAttrs() {},
5252
willClearRender() {},
5353
willDestroyElement() {},
54-
willRender() {},
54+
willRender() {}
5555
});
5656
```
5757

@@ -67,7 +67,7 @@ export default class MyComponent extends Component {
6767
```js
6868
export default Component.extend({
6969
init() {},
70-
willDestroy() {},
70+
willDestroy() {}
7171
});
7272
```
7373

0 commit comments

Comments
 (0)