Skip to content

Commit

Permalink
Fix typo in SPIFFS and FFAT examples (#3322)
Browse files Browse the repository at this point in the history
* fix typo in SPIFFS example

* fix typo in FFAT example
  • Loading branch information
mariansam authored and me-no-dev committed Oct 6, 2019
1 parent 24b277a commit e506136
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/FFat/examples/FFat_Test/FFat_Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void writeFile(fs::FS &fs, const char * path, const char * message){
if(file.print(message)){
Serial.println("- file written");
} else {
Serial.println("- frite failed");
Serial.println("- write failed");
}
}

Expand Down
2 changes: 1 addition & 1 deletion libraries/SPIFFS/examples/SPIFFS_Test/SPIFFS_Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void writeFile(fs::FS &fs, const char * path, const char * message){
if(file.print(message)){
Serial.println("- file written");
} else {
Serial.println("- frite failed");
Serial.println("- write failed");
}
}

Expand Down

0 comments on commit e506136

Please sign in to comment.