From 781295be614f416be04afc444bec9d7b4f1f34ed Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 7 Aug 2024 18:20:54 -0700 Subject: [PATCH] Remove false claim of dirname parameter from Folder::remove doc comment Previously the documentation comment claimed the function had a `dirname` parameter even though the function does not have any parameters. --- src/Folder.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Folder.h b/src/Folder.h index 6780834..f2de1e3 100644 --- a/src/Folder.h +++ b/src/Folder.h @@ -52,7 +52,6 @@ class Folder { /** * @brief Removes a directory. - * @param dirname The name of the directory to remove. * @return True if the directory was removed successfully, false otherwise. */ bool remove(); @@ -168,4 +167,4 @@ class Folder { std::string path; }; -#endif \ No newline at end of file +#endif