Skip to content

Commit

Permalink
I/O: Comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gohai committed Oct 12, 2015
1 parent b5c213f commit 03ba978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/libraries/io/examples/LedCounter/LedCounter.pde
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void setup() {
}

void draw() {
// make the leds count in binary
// make the LEDs count in binary
for (int i=0; i < leds.length; i++) {
if ((frameCount & (1 << i)) != 0) {
leds[i].set(1.0);
Expand Down

0 comments on commit 03ba978

Please sign in to comment.