From cd9a6fed4fe9e8e93268d2f1b3a7d55c5b35403d Mon Sep 17 00:00:00 2001 From: Endel Dreyer Date: Fri, 25 Feb 2022 13:38:30 -0300 Subject: [PATCH] fix typo on Thread's getHandle docs --- lib/std/Thread.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/Thread.zig b/lib/std/Thread.zig index 07e5b9d233..60bbe2c09c 100644 --- a/lib/std/Thread.zig +++ b/lib/std/Thread.zig @@ -333,7 +333,7 @@ pub fn spawn(config: SpawnConfig, comptime function: anytype, args: anytype) Spa /// May be an integer or a pointer depending on the platform. pub const Handle = Impl.ThreadHandle; -/// Retrns the handle of this thread +/// Returns the handle of this thread pub fn getHandle(self: Thread) Handle { return self.impl.getHandle(); }