1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00

SD.c: Fix error in comment for remove()

Comment was duplicated from mkdir() and not updated.
This commit is contained in:
JC Wren 2010-12-21 12:00:53 -05:00 committed by Matthijs Kooijman
parent a991f26b8d
commit 12b706551d

View File

@ -550,9 +550,9 @@ boolean SDClass::mkdir(char *filepath) {
boolean SDClass::rmdir(char *filepath) { boolean SDClass::rmdir(char *filepath) {
/* /*
Makes a single directory or a heirarchy of directories. Remove a single directory or a heirarchy of directories.
A rough equivalent to `mkdir -p`. A rough equivalent to `rm -rf`.
*/ */
return walkPath(filepath, root, callback_rmdir); return walkPath(filepath, root, callback_rmdir);