authorgravatar for leo-cheng@vip.qq.com林晨 (Leo Cheng) <leo-cheng@vip.qq.com> 2026-07-10 13:15:20+08:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-08-02 12:12:14+02:00
log407061498ce1d23ec498cce234433d18668d46be
treef8784cec37c5a7b0499733e8e7c168683dcf0396
parent12dc2f261166fe901ed955a1e87fcf292e3b1b86

std.Io: fix missing word in Clock.cpu_process/cpu_thread doc

Signed-off-by: 林晨 (Leo Cheng) <leo-cheng@vip.qq.com>

1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/Io.zig+2-2
......@@ -778,10 +778,10 @@ pub const Clock = enum {
778778 /// * On Linux, corresponds `CLOCK_BOOTTIME`.
779779 /// * On macOS, corresponds to `CLOCK_MONOTONIC_RAW`.
780780 boot,
781 /// Tracks the amount of CPU in user or kernel mode used by the calling
781 /// Tracks the amount of CPU time in user or kernel mode used by the calling
782782 /// process.
783783 cpu_process,
784 /// Tracks the amount of CPU in user or kernel mode used by the calling
784 /// Tracks the amount of CPU time in user or kernel mode used by the calling
785785 /// thread.
786786 cpu_thread,
787787