From 51fc461a24d4b4744796f57e343f2c1aafabcf7b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 27 Mar 2025 22:30:49 -0500 Subject: [PATCH] Cleanup: Fix comment in f_directory_empty(). --- level_0/f_directory/c/directory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/level_0/f_directory/c/directory.h b/level_0/f_directory/c/directory.h index 585f6d6..4382d06 100644 --- a/level_0/f_directory/c/directory.h +++ b/level_0/f_directory/c/directory.h @@ -123,7 +123,8 @@ extern "C" { * Filesystem path to the directory. * * @return - * F_okay on success. + * F_true on success and directory is empty. + * F_false on success and directory is not empty. * F_data_not if source.used or destination.used is 0. * * F_directory (with error bit) if the path is not a directory. -- 1.8.3.1