From 407061498ce1d23ec498cce234433d18668d46be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=99=A8=20=28Leo=20Cheng=29?= Date: Fri, 10 Jul 2026 13:15:20 +0800 Subject: [PATCH] std.Io: fix missing word in Clock.cpu_process/cpu_thread doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 林晨 (Leo Cheng) --- lib/std/Io.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/Io.zig b/lib/std/Io.zig index a680c9d198583eac1b1969d6e92c8ae1065886c3..906ba85f72d1014b9b17341c25e16cc775943b3a 100644 --- a/lib/std/Io.zig +++ b/lib/std/Io.zig @@ -778,10 +778,10 @@ pub const Clock = enum { /// * On Linux, corresponds `CLOCK_BOOTTIME`. /// * On macOS, corresponds to `CLOCK_MONOTONIC_RAW`. boot, - /// Tracks the amount of CPU in user or kernel mode used by the calling + /// Tracks the amount of CPU time in user or kernel mode used by the calling /// process. cpu_process, - /// Tracks the amount of CPU in user or kernel mode used by the calling + /// Tracks the amount of CPU time in user or kernel mode used by the calling /// thread. cpu_thread, -- 2.54.0