diff options
| author | Zac Nowicki <zachnowicki@gmail.com> | 2023-07-11 07:43:16 -0400 |
|---|---|---|
| committer | Zac Nowicki <zachnowicki@gmail.com> | 2023-07-11 07:43:36 -0400 |
| commit | 46f408cc9f86bbc840864c26675d7ccfd242242c (patch) | |
| tree | 7004917cc38092a09cc4c2217065ffdec8af184d /core/sync | |
| parent | 363b701925ffdbbab6255934e5076c516fa57ce6 (diff) | |
Fixup link format
Diffstat (limited to 'core/sync')
| -rw-r--r-- | core/sync/primitives.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sync/primitives.odin b/core/sync/primitives.odin index fdb86d835..5e71f6336 100644 --- a/core/sync/primitives.odin +++ b/core/sync/primitives.odin @@ -7,7 +7,7 @@ current_thread_id :: proc "contextless" () -> int { return _current_thread_id() } -// A Mutex is a [mutual exclusion lock](https://en.wikipedia.org/wiki/Mutual_exclusion). +// A Mutex is a [[mutual exclusion lock; https://en.wikipedia.org/wiki/Mutual_exclusion]] // It can be used to prevent more than one thread from executing the same piece of code, // and thus prevent access to same piece of memory by multiple threads, at the same time. // |