[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260119113420.2819-1-sef1548@gmail.com>
Date: Mon, 19 Jan 2026 11:34:20 +0000
From: Nick Huang <sef1548@...il.com>
To: Kuan-Wei Chiu <visitorckw@...il.com>,
Andrew Morton <akpm@...ux-foundation.org>
Cc: kusogame68@...il.com,
paladin@...b.edu.tw,
n1136402@...b.edu.tw,
linux-kernel@...r.kernel.org,
Nick Huang <sef1548@...il.com>
Subject: [PATCH] lib/test_min_heap: fix incorrect module description
The module description incorrectly mentions "min max heap", but the
test module is specifically designed for testing the min heap
implementation. Correct the metadata to match the code.
Signed-off-by: Nick Huang <sef1548@...il.com>
---
lib/test_min_heap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/test_min_heap.c b/lib/test_min_heap.c
index a9c4a74d3..9e42a805b 100644
--- a/lib/test_min_heap.c
+++ b/lib/test_min_heap.c
@@ -218,5 +218,5 @@ static void __exit test_min_heap_exit(void)
}
module_exit(test_min_heap_exit);
-MODULE_DESCRIPTION("Test cases for the min max heap");
+MODULE_DESCRIPTION("Test cases for the min heap");
MODULE_LICENSE("GPL");
--
2.43.0
Powered by blists - more mailing lists