aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-16 19:25:21 +0200
committerDanilo M. <danix@danix.xyz>2026-09-16 19:25:21 +0200
commitbea9b84b0f299d6dc913399a58652b4b2f04424d (patch)
tree75e92fa1756ddc03d05250a5bb737cc52169fae4 /test
parentca37eff5b6817e95ce5b6cfd768fd27c9af96914 (diff)
downloadconky-theme-udt-bea9b84b0f299d6dc913399a58652b4b2f04424d.tar.gz
conky-theme-udt-bea9b84b0f299d6dc913399a58652b4b2f04424d.zip
docs: fix a comment naming a function that does not exist
The test comment said "cpu_percent", but the API is new_cpu_counter() plus :sample(). Prose only, the code was always consistent, but a comment naming a nonexistent function sends the next reader looking for it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Diffstat (limited to 'test')
-rw-r--r--test/test_data.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_data.lua b/test/test_data.lua
index 44e9ab3..33551d1 100644
--- a/test/test_data.lua
+++ b/test/test_data.lua
@@ -36,7 +36,7 @@ assert(data.millidegrees(nil) == nil, 'nil input must give nil')
assert(data.millidegrees('') == nil, 'empty input must give nil')
assert(data.millidegrees('garbage') == nil, 'unparseable input must give nil')
--- cpu_percent is a delta between two samples, so it holds state.
+-- CPU load is a delta between two samples, so the counter holds state.
-- The first call has no previous sample and must report nil, not a number:
-- any number it invented would be wrong, and 100% on startup looks like a
-- real spike.