aboutsummaryrefslogtreecommitdiff
path: root/examples/PIO_TestPatterns/src
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2021-10-17 01:00:43 +1100
committerMike Causer <mcauser@gmail.com>2021-10-17 01:00:43 +1100
commit7ed06c1217b748edcd0a5c2bf5ff4722194c05e1 (patch)
tree4e7a230ccb9c25d1d9f0e3e344899967bbcf0ce2 /examples/PIO_TestPatterns/src
parentcf66382d75d5fb9b9a6f890d0d92c5d09c0fbc96 (diff)
Fix some typos
Diffstat (limited to 'examples/PIO_TestPatterns/src')
-rw-r--r--examples/PIO_TestPatterns/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/PIO_TestPatterns/src/main.cpp b/examples/PIO_TestPatterns/src/main.cpp
index 92a2413..9402e9e 100644
--- a/examples/PIO_TestPatterns/src/main.cpp
+++ b/examples/PIO_TestPatterns/src/main.cpp
@@ -94,7 +94,7 @@ void setup(){
matrix->begin();
matrix->setBrightness8(255);
- // longer latch blanking could help to elliminate ghosting in some cases
+ // longer latch blanking could help to eliminate ghosting in some cases
//matrix->setLatBlanking(2);
ledbuff = (CRGB *)malloc(NUM_LEDS * sizeof(CRGB)); // allocate buffer for some tests
@@ -383,7 +383,7 @@ void IRAM_ATTR mxfill(CRGB *leds){
//
/**
- * The one for 256+ matrixes
+ * The one for 256+ matrices
* otherwise this:
* for (uint8_t i = 0; i < MATRIX_WIDTH; i++) {}
* turns into an infinite loop