diff --git a/zig-ecs/src/process/scheduler.zig b/zig-ecs/src/process/scheduler.zig index 05fcbcf..6409649 100644 --- a/zig-ecs/src/process/scheduler.zig +++ b/zig-ecs/src/process/scheduler.zig @@ -46,7 +46,8 @@ pub const Scheduler = struct { } }; - // TODO: remove this when ProcessHandler can have next be a ProcessHandler + /// TODO: remove this when ProcessHandler can have `next` be a ProcessHandler. For now this acts as a data store + /// holding the data ProcessHandler requires. const NextProcessHandler = struct { deinitChild: fn (process: *Process, allocator: *std.mem.Allocator) void, process: *Process,