Skip to content

Commit c8a55aa

Browse files
committed
fix(neopixel-matrix): missing docstring
The docstring for `rowSpacing` property was misplaced
1 parent ea58457 commit c8a55aa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/neopixel-matrix-element.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export class NeopixelMatrixElement extends LitElement {
3232
/**
3333
* The spacing between two adjacent rows, in mm
3434
*/
35+
@property({ attribute: 'rowspacing' }) rowSpacing = 1;
3536

3637
/**
3738
* The spacing between two adjacent columns, in mm
@@ -53,8 +54,6 @@ export class NeopixelMatrixElement extends LitElement {
5354
*/
5455
@property() animation = false;
5556

56-
@property({ attribute: 'rowspacing' }) rowSpacing = 1;
57-
5857
private pixelElements: Array<[SVGElement, SVGElement, SVGElement, SVGElement]> | null = null;
5958

6059
private animationFrame: number | null = null;

0 commit comments

Comments
 (0)