Skip to content

Commit afb21c8

Browse files
authored
Add missing semicolon after variable assignment
fn assignment should end with a semicolon.
1 parent 2947850 commit afb21c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/render-status.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
this._waitingNextRender = true;
6767
var fn = function() {
6868
Polymer.RenderStatus._flushNextRender();
69-
}
69+
};
7070
if (!this._ready) {
7171
this.whenReady(fn);
7272
} else {

0 commit comments

Comments
 (0)