authorgravatar for marknordine@gmail.commnordine <marknordine@gmail.com> 2022-11-01 08:49:13-03:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2022-11-01 12:49:13+01:00
log2943df016e62554ef4677acb5bd15e6c7263f108
tree77a12a4f3e8719a8158703d099ce8a966fff438a
parentddb9eac05cf8c1bc77ecd303db82fe9fa51dd118
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Fix variable name in documentation sample (#13391)


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

lib/std/Thread/Condition.zig+1-1
...@@ -13,7 +13,7 @@...@@ -13,7 +13,7 @@
13//! defer m.unlock();13//! defer m.unlock();
14//!14//!
15//! while (!predicate) {15//! while (!predicate) {
16//! c.wait(&mutex);16//! c.wait(&m);
17//! }17//! }
18//! }18//! }
19//!19//!