From cb024df579535769181f0cf127ace93f687cf6a6 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 13 Feb 2023 18:57:59 +0000 Subject: [PATCH] chore(dir-info): make comment accurate --- sh/tests/solutions/dir-info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/tests/solutions/dir-info.sh b/sh/tests/solutions/dir-info.sh index c1b057a0..7530db79 100644 --- a/sh/tests/solutions/dir-info.sh +++ b/sh/tests/solutions/dir-info.sh @@ -41,7 +41,7 @@ echo "Largest file: $largest_file ($largest_file_size bytes)" echo "Smallest file: $smallest_file ($smallest_file_size bytes)" echo "Average file size: $average_size bytes" -# Print the files larger than average size +# Print the files larger or equal than average size echo "Files larger or equal to average size ($average_size bytes):" for file in $(find $dir_path -type f) do