Skip to content

Commit

Permalink
Add missing semicolons, see phetsims/chipper#1275
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 11, 2022
1 parent 483311c commit 19e0607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ops/SegmentTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class SegmentNode<T> {
// Red-black tree color information, for self-balancing
isBlack!: boolean;

tree!: SegmentTree<T>
tree!: SegmentTree<T>;

constructor( tree: SegmentTree<T>, min: number, max: number ) {
this.items = [];
Expand Down

0 comments on commit 19e0607

Please sign in to comment.