obj: module: fix comment

This commit is contained in:
foxnne 2024-11-28 11:01:58 -06:00 committed by Emi Gutekanst
parent 797f8f7a58
commit 40dcef1836

View file

@ -68,7 +68,7 @@ pub fn Objects(options: ObjectsOptions, comptime T: type) type {
/// Global pointer to object relations graph /// Global pointer to object relations graph
graph: *Graph, graph: *Graph,
/// A bitset per-field used to track field changes. Only used if options.track_fields == true. /// A bitset used to track per-field changes. Only used if options.track_fields == true.
updated: ?std.bit_set.DynamicBitSetUnmanaged = if (options.track_fields) .{} else null, updated: ?std.bit_set.DynamicBitSetUnmanaged = if (options.track_fields) .{} else null,
}, },