commit 5aa146c2d27ffb0027314be945bbd6ff2638a4f3 (tree) parent 5e4000ee692529758d7d2aab35a485bdbe4b6862 Author: mnordine <marknordine@gmail.com> Date: Tue, 1 Nov 2022 08:49:13 -0300 Fix variable name in documentation sample (#13391) Diffstat:
| M | lib/std/Thread/Condition.zig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/Thread/Condition.zig b/lib/std/Thread/Condition.zig @@ -13,7 +13,7 @@ //! defer m.unlock(); //! //! while (!predicate) { -//! c.wait(&mutex); +//! c.wait(&m); //! } //! } //!