From d3d3e55fae2299d1ff594c77da2f1f41f44ab525 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Sun, 28 Feb 2021 17:01:30 +0100 Subject: [PATCH] langref: Update usage of Thread.spawn() --- doc/langref.html.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index e49609fdbf..a716336015 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -933,8 +933,8 @@ const assert = std.debug.assert; threadlocal var x: i32 = 1234; test "thread local storage" { - const thread1 = try std.Thread.spawn({}, testTls); - const thread2 = try std.Thread.spawn({}, testTls); + const thread1 = try std.Thread.spawn(testTls, {}); + const thread2 = try std.Thread.spawn(testTls, {}); testTls({}); thread1.wait(); thread2.wait();