Skip to content

Commit

Permalink
fix while syntax in notes
Browse files Browse the repository at this point in the history
  • Loading branch information
benpaddlejones committed Mar 10, 2024
1 parent e03688f commit 507996e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Challenge1/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge2/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge3/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge4/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge5/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge6/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down
2 changes: 1 addition & 1 deletion Challenge7/notes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (true){
Serial.println("This is false")
}
While (true) {
while (true) {
mrJonesDriving->driveForward(200,200);
}
Expand Down

0 comments on commit 507996e

Please sign in to comment.