Skip to content

Commit fad0506

Browse files
committed
style(spi): remove redundant whitespace from comments
1 parent b728198 commit fad0506

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/peripherals/spi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ export interface SPIConfig {
1010
}
1111

1212
// Register bits:
13-
const SPCR_SPIE = 0x80; // SPI Interrupt Enable
13+
const SPCR_SPIE = 0x80; // SPI Interrupt Enable
1414
const SPCR_SPE = 0x40; // SPI Enable
1515
const SPCR_DORD = 0x20; // Data Order
16-
const SPCR_MSTR = 0x10; // Master/Slave Select
16+
const SPCR_MSTR = 0x10; // Master/Slave Select
1717
const SPCR_CPOL = 0x8; // Clock Polarity
1818
const SPCR_CPHA = 0x4; // Clock Phase
1919
const SPCR_SPR1 = 0x2; // SPI Clock Rate Select 1

0 commit comments

Comments
 (0)