Skip to content

Commit

Permalink
fix: remove errant semi-colon after decorator (#1223)
Browse files Browse the repository at this point in the history
  • Loading branch information
heyMP authored Oct 13, 2023
1 parent f3ab785 commit cdb05a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ import {html, LitElement} from 'lit';
import {customElement, property} from 'lit/decorators.js';
import {msg} from '@lit/localize';

@customElement('my-greeter');
@customElement('my-greeter')
class MyGreeter extends LitElement {
@property()
who = 'World';
Expand Down

0 comments on commit cdb05a1

Please sign in to comment.