From 12b706551dbf7d483ddd53718bd5f5e619c60ab0 Mon Sep 17 00:00:00 2001 From: JC Wren Date: Tue, 21 Dec 2010 12:00:53 -0500 Subject: [PATCH] SD.c: Fix error in comment for remove() Comment was duplicated from mkdir() and not updated. --- libraries/SD/src/SD.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/SD/src/SD.cpp b/libraries/SD/src/SD.cpp index c746809b6..65d32741c 100644 --- a/libraries/SD/src/SD.cpp +++ b/libraries/SD/src/SD.cpp @@ -550,9 +550,9 @@ boolean SDClass::mkdir(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);