aboutsummaryrefslogtreecommitdiff
path: root/examples/BouncingSquares
diff options
context:
space:
mode:
Diffstat (limited to 'examples/BouncingSquares')
-rw-r--r--examples/BouncingSquares/BouncingSquares.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/BouncingSquares/BouncingSquares.ino b/examples/BouncingSquares/BouncingSquares.ino
index 5ea09b1..6a01225 100644
--- a/examples/BouncingSquares/BouncingSquares.ino
+++ b/examples/BouncingSquares/BouncingSquares.ino
@@ -63,7 +63,7 @@ void loop()
for (int i = 0; i < numSquares; i++)
{
- // Draw rect and then calculatae
+ // Draw rect and then calculate
display->fillRect(Squares[i].xpos, Squares[i].ypos, Squares[i].square_size, Squares[i].square_size, Squares[i].colour);
if (Squares[i].square_size + Squares[i].xpos >= display->width()) {