diff --git a/ulid.zig b/ulid.zig index b2c8d621c086ad0a568890f238800dc27bfc07b5..00962ccf3728aff46c9205160dce1d63354d0f54 100644 --- a/ulid.zig +++ b/ulid.zig @@ -7,9 +7,9 @@ const extras = @import("extras"); pub const Factory = struct { epoch: i64, - rand: std.rand.Random, + rand: std.Random, - pub fn init(epoch: i64, rand: std.rand.Random) Factory { + pub fn init(epoch: i64, rand: std.Random) Factory { return Factory{ .epoch = epoch, .rand = rand,