aboutsummaryrefslogtreecommitdiff
path: root/examples/BouncingSquares
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2021-10-16 15:08:55 +0100
committerGitHub <noreply@github.com>2021-10-16 15:08:55 +0100
commit39e85dd687b68540ee7a8bfeeb0ba4db365cf2c4 (patch)
treeaf2d55c63dabc2bd28ecc7a53fdf9cc9978157db /examples/BouncingSquares
parentfaccc17bbb10f95594a88f0a2b42d6cf89ebd0af (diff)
parent7ed06c1217b748edcd0a5c2bf5ff4722194c05e1 (diff)
Merge pull request #200 from mcauser/typos
Fix some typos
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()) {