Skip to content

Commit 12b7065

Browse files
jcwrenmatthijskooijman
authored andcommitted
SD.c: Fix error in comment for remove()
Comment was duplicated from mkdir() and not updated.
1 parent a991f26 commit 12b7065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: libraries/SD/src/SD.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -550,9 +550,9 @@ boolean SDClass::mkdir(char *filepath) {
550550
boolean SDClass::rmdir(char *filepath) {
551551
/*
552552
553-
Makes a single directory or a heirarchy of directories.
553+
Remove a single directory or a heirarchy of directories.
554554
555-
A rough equivalent to `mkdir -p`.
555+
A rough equivalent to `rm -rf`.
556556
557557
*/
558558
return walkPath(filepath, root, callback_rmdir);

0 commit comments

Comments
 (0)