diff options
Diffstat (limited to 'std/atomic/queue.zig')
| -rw-r--r-- | std/atomic/queue.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/atomic/queue.zig b/std/atomic/queue.zig index 288a2b3b48..35180da8d1 100644 --- a/std/atomic/queue.zig +++ b/std/atomic/queue.zig @@ -16,7 +16,7 @@ pub fn Queue(comptime T: type) type { data: T, }; - // TODO: well defined copy elision: https://github.com/zig-lang/zig/issues/287 + // TODO: well defined copy elision: https://github.com/ziglang/zig/issues/287 pub fn init(self: &Self) void { self.root.next = null; self.head = &self.root; |
